地圖上怎么添加自己商鋪的信息?地圖上怎么添加自己商鋪的信息?

引路人地圖標(biāo)注 2022-02-20 08:44
【摘要】小編為您整理如何在衛(wèi)星地圖上添加標(biāo)注我的商鋪位置信息呢、怎么在蘋(píng)果地圖上添加自己的商鋪位置急、地圖上怎么添加商鋪的具體位置、地圖上怎么添加商鋪的具體位置、怎么在蘋(píng)果手機(jī)自帶地圖上添加自己的商鋪位置相關(guān)地圖標(biāo)注知識(shí),詳情可查看下方正文!

如何在衛(wèi)星地圖上添加標(biāo)注我的商鋪位置信息呢?

標(biāo)注地圖的方法如下:  
一、環(huán)境介紹  1,最近在與一家地圖廠家做地圖對(duì)接,對(duì)方用的是在ArcGIS地圖上做的二次開(kāi)發(fā),給我的API也是官方的API,我需要在他們地圖上實(shí)現(xiàn)我們自己公司的一些功能(比如說(shuō):添加標(biāo)記,標(biāo)注中心等功能),因?yàn)榄h(huán)境問(wèn)題,所以目前只能使用官方在線地圖demo實(shí)現(xiàn),下面是我整理的如何實(shí)現(xiàn)在ArcGIS在線地圖上添加標(biāo)注。
2.地圖:ArcGIS官方在線地圖,ArcGIS Javascript API版本:
3.9
3.軟件截圖一(在地圖上點(diǎn)擊后添加的標(biāo)注標(biāo)記,點(diǎn)擊標(biāo)注標(biāo)記后彈出的詳細(xì)信息):
二、操作步驟
1.下面是我的代碼(點(diǎn)擊地圖就可以添加一個(gè)標(biāo)注標(biāo)記,點(diǎn)擊標(biāo)注標(biāo)記就可以顯示詳細(xì)信息):  <!DOCTYPE >  <>  <head>  <meta http-equiv="Content-Type" content="text/; charset=utf-8">  <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">  <title></title>  <link rel="stylesheet" href="鏈接">  <style>  , body, #map {  height: 100%; width: 100%; margin: 0; padding: 0;  }  #controls {  background: #fff;  box-shadow: 0 6px 6px -6px #999;  color: #444;  font-family: sans-serif;  height: auto;  left: 1em;  padding: 1em;  position: absolute;  top: 1em;  width: auto;  z-index: 40;  }  #controls div {  padding: 0 0 1em 0;  }  </style>  <script src="鏈接"></script>  <script>  var map, graphicLayer;  //標(biāo)記數(shù)組  var allMarkers = [];    require([  "esri/map", "esri/geometry/Circle", "esri/symbols/SimpleFillSymbol",  "esri/graphic", "esri/layers/GraphicsLayer",  "dojo/dom", "dojo/dom-attr", "dojo/domReady!"  ], function(  Map, Circle, SimpleFillSymbol,  Grahpic, GraphicsLayer,  dom, domAttr  ) {  map = new Map("map", {  basemap: "streets",  center: [120.741, 30.39],  slider: false,  zoom: 2  });    //創(chuàng)建圖層  graphicLayer = new GraphicsLayer();  //把圖層添加到地圖上  map.addLayer(graphicLayer);    map.on("click", function(e) {  addMarker(e.mapPoint.x, e.mapPoint.y);  });  map.showZoomSlider();  });  function addMarker(xx, yy) {  //設(shè)置標(biāo)注的經(jīng)緯度  //方法一  var pt = new esri.geometry.Point(xx, yy, map.spatialReference);  //方法二  // var pt = new esri.geometry.geographicToWebMercator(new esri.geometry.Point({  // "x": 11
8.0605760000,  // "y": 3
6.8424320000,  // "spatialReference": { "wkid": 102113 }  // }));  //設(shè)置標(biāo)注顯示的圖標(biāo)  //var symbol = new esri.symbol.SimpleMarkerSymbol();  var symbol1 = new esri.symbol.PictureMarkerSymbol("images/iconA_3
2.png", 25, 25);  //要在模版中顯示的參數(shù)  var attr = { "address": "山東省淄博市張指路人地圖標(biāo)注服務(wù)中心區(qū)" };  //創(chuàng)建模版  var infoTemplate = new esri.InfoTemplate("標(biāo)題", "地址:${address}");  //創(chuàng)建圖像  var graphic = new esri.Graphic(pt, symbol1, attr, infoTemplate);  //把圖像添加到剛才創(chuàng)建的圖層上  graphicLayer.add(graphic);  setMapCenter(xx, yy , 1);  }    function setMapCenter(xx, yy , level) {  var nt = new esri.geometry.Point(xx, yy, map.spatialReference);  map.centerAndZoom(nt, level);  }    //添加標(biāo)注  function mapAddOverLay(xx, yy, id, labelname) {  var nt = new BMap.Point(xx, yy);  var marker = new BMap.Marker(nt);  map.addOverlay(marker); //添加標(biāo)注    allMarkers.push(marker); //記錄覆蓋物句柄    if (labelname != "") {  var label = new BMap.Label(labelname, { offset: new BMap.Size(20, -10) });  marker.setLabel(label); //添加Label  }    //添加標(biāo)注回調(diào)  addOverlayCallback(marker, xx, yy, id);  }    </script>  </head>  <body>  <div id="map"></div>  <!--<div id="controls">  <div>Click the map.</div>  <input type="checkbox" id="geodesic">  <label for="geodesic">Geodesic?</label>  </div> -->  </body>  </>


怎么在蘋(píng)果地圖上添加自己的商鋪位置急?

手機(jī)客戶端提交,如果當(dāng)前位置是商鋪位置,按住點(diǎn)擊新增地點(diǎn)提交申請(qǐng)。

準(zhǔn)備你的材料,自己添加。有需求可以加我


地圖上怎么添加商鋪的具體位置?

手機(jī)客戶端提交,如果當(dāng)前位置是商鋪位置,按住點(diǎn)擊新增地點(diǎn)提交申請(qǐng)。

顯示已通過(guò),可是地圖上沒(méi)顯示商鋪?

app了,給大家發(fā)一個(gè)最內(nèi)新的上傳指路人地圖標(biāo)注服務(wù)中心鋪位置的方容法,自己就能操作,還是免費(fèi)的:1,打開(kāi)地圖app,在主頁(yè)右下角,點(diǎn)擊“我的”;2,然后在頁(yè)面中間找到“我的指路人地圖標(biāo)注服務(wù)中心面”的按鈕,根據(jù)提示入駐,有營(yíng)業(yè)執(zhí)照的添加營(yíng)業(yè)執(zhí)照,多拍幾個(gè)門(mén)頭照片,審核過(guò)了就能展示了。加了v的指路人地圖標(biāo)注服務(wù)中心鋪能展示給更多的用戶。


地圖上怎么添加商鋪的具體位置?

手機(jī)客戶端提交,如果當(dāng)前位置是商鋪位置,按住點(diǎn)擊新增地點(diǎn)提交申請(qǐng)。


怎么在蘋(píng)果手機(jī)自帶地圖上添加自己的商鋪位置?

手機(jī)客戶端提交,如果當(dāng)前位置是商鋪位置,按住點(diǎn)擊新增地點(diǎn)提交申請(qǐng)。

用預(yù)先注冊(cè)的賬號(hào)登陸,然后打開(kāi)搜索“地圖” 打開(kāi)地圖后,點(diǎn)擊左上角的商戶免費(fèi)標(biāo)注 點(diǎn)擊商戶免費(fèi)標(biāo)注后會(huì)彈出如下窗口,選擇左邊標(biāo)注認(rèn)領(lǐng)單個(gè)商戶 然后選擇所屬地區(qū),搜索——點(diǎn)擊免費(fèi)添加標(biāo)注 然后添加指路人地圖標(biāo)注服務(wù)中心鋪相關(guān)信息,指路人地圖標(biāo)注服務(wù)中心鋪名稱、地址、電話等(帶色*號(hào)的必須要填寫(xiě))。注意一定要點(diǎn)擊地址標(biāo)注位置哦。下圖有紅色箭頭說(shuō)明。


上一篇 :怎么在地圖上上傳地點(diǎn)位置?怎么在地圖上上傳地點(diǎn)位置?

下一篇:地圖上怎么添加自己公司的信息?地圖上怎么添加自己公司的信息?