如何在地圖上添加商鋪位置?如何在地圖上添加商鋪?

簡居客地圖標(biāo)注 2021-09-25 15:50
【摘要】小編為您整理如何在地圖上添加公司位置、如何在衛(wèi)星地圖上添加標(biāo)注我的商鋪位置信息呢、如何在地圖上添加位置、如何在地圖上添加一個指針位置、如何在地圖上添加位置相關(guān)地圖標(biāo)注知識,詳情可查看下方正文!

如何在地圖上添加公司位置

我只知道在google上創(chuàng)建地圖,首先使用電子郵件注冊google帳戶,進入到商家信息里面添加列表就可以,驗證方法有2種,一種是電話另一種是郵件,得到激活碼激活就可以在地圖上顯示你的信息了. 還沒弄過,好像我公司已經(jīng)顯示在地圖上了,但不是我們公司人員自己弄的.


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

標(biāo)注地圖的方法如下:  
一、環(huán)境介紹  1,最近在與一家地圖廠家做地圖對接,對方用的是在ArcGIS地圖上做的二次開發(fā),給我的API也是官方的API,我需要在他們地圖上實現(xiàn)我們自己公司的一些功能(比如說:添加標(biāo)記,定位中心等功能),因為環(huán)境問題,所以目前只能使用官方在線地圖demo實現(xiàn),下面是我整理的如何實現(xiàn)在ArcGIS在線地圖上添加標(biāo)注。
2.地圖:ArcGIS官方在線地圖,ArcGIS Javascript API版本:
3.9
3.軟件截圖一(在地圖上點擊后添加的標(biāo)注標(biāo)記,點擊標(biāo)注標(biāo)記后彈出的詳細(xì)信息):
二、操作步驟
1.下面是我的代碼(點擊地圖就可以添加一個標(biāo)注標(biāo)記,點擊標(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>  </>


如何在地圖上添加位置?

提供 商戶名稱,商戶地址,商戶電話,商戶營業(yè)執(zhí)照,提交給他們審核,審核通過之后就可以展現(xiàn)了,一般是3個工作日就能審核通過


如何在地圖上添加一個指針位置?

針標(biāo)簽 CustomAnnotation *ann = [[CustomAnnotation alloc] init]; ann.title = @"增加字 ann.coordinate = loc; [map_ addAnnotation:ann];CustomAnnotationMKAnnotation協(xié)議的類@interface CustomAnnotation : NSObject


如何在地圖上添加位置?

親,最簡單的辦法可以標(biāo)記就可以了,這個需要后臺審核好幾天。還有一個簡易的方法,就是修改一下別人標(biāo)記的信息。這樣可以直接搜到

你是說想把自己公司名稱、地址在地圖顯示嗎?地圖現(xiàn)在加進去比較困難,你在地圖貼吧里留言通過版主申核后才可以


上一篇 :在地圖上標(biāo)注自己的指路人地圖標(biāo)注服務(wù)中心鋪,怎么在地圖上標(biāo)注自己的指路人地圖標(biāo)注服務(wù)中心鋪?

下一篇:怎么標(biāo)注自己指路人地圖標(biāo)注服務(wù)中心的位置?怎樣標(biāo)注自己的指路人地圖標(biāo)注服務(wù)中心位置?