怎么在地圖上顯示距離標(biāo)注多個(gè)地點(diǎn)?
怎么在地圖上標(biāo)注多個(gè)地點(diǎn)?
發(fā)尾都羞怯
1、打開地圖,以臺(tái)灣島區(qū)域?yàn)槔?br/ class="_c9f0f895">2、選擇需要去的地點(diǎn),如單擊“長(zhǎng)庚大學(xué)”會(huì)出現(xiàn)對(duì)話框;
3、點(diǎn)選收藏(即“五角星”)后,左上角會(huì)出現(xiàn)“添加成功”的提示;
4、同樣的方式再添加一個(gè),之前添加的“長(zhǎng)庚大學(xué)”上已經(jīng)有個(gè)五角星的標(biāo)識(shí)了;
5、添加后,可以再左側(cè)“收藏”內(nèi)看到選擇的地點(diǎn),單擊可查看;
6、對(duì)于去過(guò)的地方,可以進(jìn)行“重命名”或貼上“標(biāo)簽”或者刪除
地圖標(biāo)記多個(gè)地點(diǎn)可以嗎?
asd1087
地圖怎么規(guī)劃多個(gè)目的地?
看了饃饃
地圖標(biāo)記多個(gè)地點(diǎn)可以嗎?
滌影
白云
地圖能顯示多少個(gè)指路人地圖標(biāo)注服務(wù)中心鋪地點(diǎn)?
井里的驢
地圖怎么標(biāo)注地點(diǎn) 地圖標(biāo)注地點(diǎn)教程
二月
1、進(jìn)入【地圖】,點(diǎn)擊右側(cè)【上報(bào)按鈕】;
2、點(diǎn)擊【新增地點(diǎn)】選擇希望新增的地點(diǎn)上報(bào)即可;
3、選擇新增的地點(diǎn)是什么類型即可;
地圖上怎么標(biāo)記多個(gè)目標(biāo),并且在同個(gè)地圖上顯示多個(gè)標(biāo)注的地點(diǎn)?
想知道: 地圖上怎么標(biāo)記多個(gè)目標(biāo),并且在同個(gè)地圖上顯示多個(gè)標(biāo)注的地點(diǎn)?
巴寶
地圖怎么設(shè)置同時(shí)顯示多個(gè)地點(diǎn)
石7橋
為了未來(lái)
怎么在地圖上標(biāo)記多個(gè)地點(diǎn)?
別太張揚(yáng)
有一個(gè)非常實(shí)用且高效的方法,可以讓題主在地圖上標(biāo)記多個(gè)地點(diǎn)
很簡(jiǎn)單,打開蘭圖繪,默認(rèn)地圖就是“地圖”
利用蘭圖繪的【點(diǎn)標(biāo)注】功能添加標(biāo)記即可:
點(diǎn)標(biāo)注
成圖效果展示:
希望可以幫到題主!
?吃肉隊(duì)·白紙
在地圖上標(biāo)記多個(gè)地點(diǎn),最簡(jiǎn)單的是使用weixin的小程序“地圖標(biāo)記制作”;
:網(wǎng)頁(yè)鏈接
怎么在地圖上顯示距離標(biāo)注多個(gè)地點(diǎn)
地圖怎么標(biāo)記多個(gè)地點(diǎn)?
秋茉
怎么在地圖上標(biāo)記多個(gè)地點(diǎn)?
tiramisu
【手機(jī)定位添加】
1、進(jìn)入地圖,點(diǎn)擊地圖窗口右上方的進(jìn)入圖層列表,選擇正確的圖層。
2、關(guān)閉圖層列表,返回地圖窗口,長(zhǎng)按窗口右下方的定位并添加按鈕,在出現(xiàn)的窗口中,可以通過(guò)拖動(dòng)地圖或是選擇不同的地點(diǎn)名稱來(lái)添加村注。
如何在mapcontrol控件上顯示多個(gè)地點(diǎn)標(biāo)注
TsanyLee。
對(duì)于你提到的問(wèn)題,我創(chuàng)建了一個(gè)示例工程去測(cè)試,以下是我的代碼:
MainPage.xaml:
private void Button_Click(object sender, RoutedEventArgs e)
{
AddMapIcon();
}
private void AddMapIcon()
{
MapIcon MapIcon1 = new MapIcon();
MapIcon
1.Location = new Geopoint(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 Geopoint(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í)候可以顯示,但是縮放后,有些又可以正常顯示,對(duì)于這個(gè)問(wèn)題,我嘗試通過(guò)強(qiáng)制自定義MapIcon的Image屬性,但是沒(méi)有解決。
通過(guò)定位問(wèn)題,覺(jué)得可能的問(wèn)題是在于模擬器,于是在真機(jī)上發(fā)現(xiàn)均可以正常顯示這些點(diǎn),所以建議你在真機(jī)上測(cè)試程序的效果。
--------------------------------------------------------------------------------
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.
怎么在地圖上面標(biāo)注多個(gè)地點(diǎn)
N檸檬
【手機(jī)定位添加】
1、進(jìn)入地圖,點(diǎn)擊地圖窗口右上方的進(jìn)入圖層列表,選擇正確的圖層。
2、關(guān)閉圖層列表,返回地圖窗口,長(zhǎng)按窗口右下方的定位并添加按鈕,在出現(xiàn)的窗口中,可以通過(guò)拖動(dòng)地圖或是選擇不同的地點(diǎn)名稱來(lái)添加村注。