如何在嘀嘀打車導(dǎo)航上顯示自己地點(diǎn)位置?如何在嘀嘀打車導(dǎo)航上顯示自己地點(diǎn)位置?
如何在導(dǎo)航上顯示自己的指路人地圖標(biāo)注服務(wù)中心名?
可以在地圖上標(biāo)注下,這里需要你提前注冊好一個(gè)的賬號,而且要把里面的資料完善好,然后單擊右上角的【商戶免費(fèi)標(biāo)注】 如果存在啦,而發(fā)現(xiàn)標(biāo)注不準(zhǔn)確,可以先刪除掉,重新標(biāo)注。 填寫好相應(yīng)的資料,一定要保證準(zhǔn)確,然后提交審核。 一般的話,審核需要5-7天左右。
如何在導(dǎo)航上顯示自己酒指路人地圖標(biāo)注服務(wù)中心?
那是廣告位喲,可以與凱立德導(dǎo)航的營銷部聯(lián)系相關(guān)事宜。
嘀嘀打車怎么不顯示定?
你可以重新打開GPS,還不行就看看你的將你的網(wǎng)絡(luò)進(jìn)行重新開啟
如何在mapcontrol控件上顯示多個(gè)地點(diǎn)標(biāo)注?
對于你提到的問題,我創(chuàng)建了一個(gè)示例工程去測試,以下是我的代碼: MainPage.xaml: <Grid> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition Height="50" /> </Grid.RowDefinitions> <maps:MapControl Name="MapControl1" MapServiceToken="XXXXX"> </maps:MapControl> <Button Grid.Row="1" Content="Add Point" Click="Button_Click" /> </Grid> private void Button_Click(object sender, RoutedEventArgs e) { AddMapIcon(); } private void AddMapIcon() { MapIcon MapIcon1 = new MapIcon(); MapIcon
1.Location = new Geont(new BasicGeoposition() { Latitude = 4
7.620, Longitude = -12
2.349 }); MapIcon
1.NormalizedAnchorPoint = new Point(0.5,
1.0); MapIcon
1.Title = "Space Needle"; MapIcon
1.Visible = true; MapIcon
1.ZIndex = int.MaxValue; MapControl
1.MapElements.Add(MapIcon1); MapIcon MapIcon2 = new MapIcon(); MapIcon
2.Location = new Geont(new BasicGeoposition() { Latitude = 4
7.603569, Longitude = -12
2.329453 }); MapIcon
2.NormalizedAnchorPoint = new Point(0.5,
1.0); MapIcon
2.Title = "Seattle"; MapIcon
2.Visible = true; MapIcon
2.ZIndex = int.MaxValue; MapControl
1.MapElements.Add(MapIcon2); MapControl
1.Center = MapIcon
1.Location; MapControl
1.ZoomLevel = 12; } 如你所提到的,在模擬器上,MapIcon有時(shí)候可以顯示,但是縮放后,有些又可以正常顯示,對于這個(gè)問題,我嘗試通過強(qiáng)制自定義MapIcon的Image屬性,但是沒有解決。 通過標(biāo)注問題,覺得可能的問題是在于模擬器,于是在真機(jī)上發(fā)現(xiàn)均可以正常顯示這些點(diǎn),所以建議你在真機(jī)上測試程序的效果。 -------------------------------------------------------------------------------- We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate the survey.
如何在mapcontrol控件上顯示多個(gè)地點(diǎn)標(biāo)注?
對于你提到的問題,我創(chuàng)建了一個(gè)示例工程去測試,以下是我的代碼:
MainPage.xaml:
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="50" />
</Grid.RowDefinitions>
<maps:MapControl Name="MapControl1" MapServiceToken="XXXXX">
</maps:MapControl>
<Button Grid.Row="1" Content="Add Point" Click="Button_Click" />
</Grid>
private void Button_Click(object sender, RoutedEventArgs e)
{
AddMapIcon();
}
private void AddMapIcon()
{
MapIcon MapIcon1 = new MapIcon();
MapIcon
1.Location = new Geont(new BasicGeoposition()
{
Latitude = 4
7.620,
Longitude = -12
2.349
});
MapIcon
1.NormalizedAnchorPoint = new Point(0.5,
1.0);
MapIcon
1.Title = "Space Needle";
MapIcon
1.Visible = true;
MapIcon
1.ZIndex = int.MaxValue;
MapControl
1.MapElements.Add(MapIcon1);
MapIcon MapIcon2 = new MapIcon();
MapIcon
2.Location = new Geont(new BasicGeoposition()
{
Latitude = 4
7.603569,
Longitude = -12
2.329453
});
MapIcon
2.NormalizedAnchorPoint = new Point(0.5,
1.0);
MapIcon
2.Title = "Seattle";
MapIcon
2.Visible = true;
MapIcon
2.ZIndex = int.MaxValue;
MapControl
1.MapElements.Add(MapIcon2);
MapControl
1.Center = MapIcon
1.Location;
MapControl
1.ZoomLevel = 12;
}
如你所提到的,在模擬器上,MapIcon有時(shí)候可以顯示,但是縮放后,有些又可以正常顯示,對于這個(gè)問題,我嘗試通過強(qiáng)制自定義MapIcon的Image屬性,但是沒有解決。
通過標(biāo)注問題,覺得可能的問題是在于模擬器,于是在真機(jī)上發(fā)現(xiàn)均可以正常顯示這些點(diǎn),所以建議你在真機(jī)上測試程序的效果。
--------------------------------------------------------------------------------
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.