|
TalMap SDK Libary Reference |
XAdminItem::GotoCenter |
ÇàÁ¤µ¿ÀÇ Á᫐ ÁÂÇ¥·Î Áöµµ¸¦ À̵¿ÇÑ´Ù. |
|
|
|
Parameters
|
Type |
Çü½Ä (0: ÃÖÇÏÀ§ ÇàÁ¤°è, 1: µµ, 2: ½Ã, 3: µ¿) |
|
|
|
|
Return Value
|
|
Remarks
|
GotoCenter ´Â XAdminItem ÀÇ Method·Î Á¦°øµË´Ï´Ù.
»ç¿ëÀÚ´Â ÀÌ ¸Þ¼Òµå¸¦ ÀÌ¿ëÇÏ¿© XAdminItemÀÇ Á᫐ ÁÂÇ¥·Î Áöµµ¸¦ À̵¿ÇÒ ¼ö ÀÖ½À´Ï´Ù.
|
|
|
|
Example
|
|
function TestBtn()
{
var ctrlman = m_Map.GetCtrlMan();
var adminman = ctrlman.GetAdminMan();
var admitem = adminman.GetAdminItem(45711708, 13515420);
if (admitem)
{
admitem.GotoCenter(3); // admitem ÀÇ Áß½ÉÁÂÇ¥·Î ÁöµµÀ̵¿
admitem.Destroy();
}
}
|
|
|
void CTestTalMapXDlg::OnBnClickedButton3()
{
CXCtrlMan ctrlman = m_Map.GetCtrlMan();
CXAdminMan adminman = ctrlman.GetAdminMan();
CXAdminItem admitem = adminman.GetAdminItem(45711708, 13515420);
if (admitem.m_lpDispatch != NULL)
{
admitem.GotoCenter(3); // admitem ÀÇ Áß½ÉÁÂÇ¥·Î ÁöµµÀ̵¿
admitem.Destroy();
}
}
|
|
|
|
See Also
|