地圖標(biāo)注商戶(hù)名稱(chēng)填寫(xiě)不規(guī)范
5gabnn
填寫(xiě)信息一定要準(zhǔn)確,詳細(xì)
標(biāo)注地圖的時(shí)候一定要把地圖盡量放大,標(biāo)注準(zhǔn)確,收錄才會(huì)更快
上傳資質(zhì)一定要清晰
希望可以幫助你,記得采納我啊
frankneit
地圖標(biāo)注后不顯示電話(huà)怎么辦?
楊先生
地圖標(biāo)注后不顯示電話(huà)怎么辦?
陳舞冰
地圖標(biāo)注時(shí)標(biāo)的位置不準(zhǔn)確怎么辦
拂曉丶
地圖標(biāo)注生效,但是地圖上不顯示
地圖標(biāo)注服務(wù)-不開(kāi)通推廣照樣可以做地圖標(biāo)注吧 ? U
維納斯說(shuō)
地圖標(biāo)注商戶(hù)名稱(chēng)填寫(xiě)不規(guī)范
芒果小朋友
不開(kāi)通推廣照樣可以做地圖標(biāo)注吧 ?
小張又餓了
1、注冊(cè)登陸,完善個(gè)人信息:直接訪(fǎng)問(wèn)鏈接注冊(cè)賬號(hào),激活并完善個(gè)人信息;或通過(guò)地圖主頁(yè)右上角點(diǎn)擊“商戶(hù)免費(fèi)標(biāo)注”完成注冊(cè)登陸。
2、能查到指路人地圖標(biāo)注服務(wù)中心鋪,可以直接認(rèn)領(lǐng):請(qǐng)?jiān)诘貓D上方的框中輸入您的指路人地圖標(biāo)注服務(wù)中心鋪,如果能夠查到您的指路人地圖標(biāo)注服務(wù)中心鋪,請(qǐng)直接認(rèn)領(lǐng),認(rèn)領(lǐng)時(shí)需要上傳您的證照資質(zhì)。如果無(wú)法查到,請(qǐng)先標(biāo)注其所在的位置,再進(jìn)行認(rèn)領(lǐng)。
3、查不到指路人地圖標(biāo)注服務(wù)中心鋪,先標(biāo)注,再認(rèn)領(lǐng)點(diǎn)擊“我要標(biāo)注”,填寫(xiě)商戶(hù)名稱(chēng)和精確的地址位置,精確到門(mén)牌號(hào)。點(diǎn)擊“標(biāo)注商戶(hù)位置”,雙擊地圖,放大地圖比例。地圖比例越大,標(biāo)注的準(zhǔn)確度越高。需要放到最大層級(jí),即雙擊鼠標(biāo)地圖不再放大,地圖能夠清楚顯示你所在位置的周邊環(huán)境為止。參照你周邊的地標(biāo)性建筑,拖拽地圖中的紅點(diǎn),標(biāo)注到你認(rèn)為最準(zhǔn)確的位置,點(diǎn)擊確定提交后,在進(jìn)行認(rèn)領(lǐng)。
4、提交申請(qǐng)后,需要5-7天的審核期,請(qǐng)耐心等待。詳情請(qǐng)參見(jiàn):鏈接
API地圖的標(biāo)注不是居中顯示,而是顯示在左上角是怎么回事
暖的不是我的心
有誰(shuí)知道iOS開(kāi)發(fā)怎么能將根據(jù)地圖搜索API搜索出來(lái)的地名直接標(biāo)注在地圖中心點(diǎn)上嗎?
花次元
二、我們?cè)诓皇煜さ那闆r下、先盡量多的添加此軟件應(yīng)用權(quán)限;所以在mainifest中添加如下代碼;插入的位置在 <application的代碼之前。 Java代碼 <uses-permission :name=".permission.ACCESS_COARSE_LOCATION"></uses-permission> <uses-permission :name=".permission.ACCESS_FINE_LOCATION"></uses-permission> <uses-permission :name=".permission.INTERNET"></uses-permission> <uses-permission :name=".permission.ACCESS_NETWORK_STATE"></uses-permission> <uses-permission :name=".permission.WRITE_EXTERNAL_STORAGE"></uses-permission> <uses-permission :name=".permission.READ_PHONE_STATE"></uses-permission> <uses-permission :name=".permission.CHANGE_WIFI_STATE"></uses-permission> <uses-permission :name=".permission.ACCESS_WIFI_STATE"></uses-permission>
三、接著就要在res文件下的layout中添加界面布局了。其代碼如下、你可以完全復(fù)制進(jìn)去。 Java代碼 <?xml version="
1.0" encoding="utf-8"?> <LinearLayout xmlns:="鏈接" :orientation="vertical" :layout_width="fill_parent" :layout_height="fill_parent" > <!--添加文本輸入框,查找地址--> <LinearLayout :layout_height="wrap_content" :layout_width="wrap_content" :orientation="horizontal" xmlns:="鏈接" :layout_gravity="center_horizontal"> <TextView :layout_height="wrap_content" :layout_width="wrap_content" :text="經(jīng)度"/> <EditText :layout_height="fill_parent" :layout_width="100px" :id="@+id/longitude"/> <TextView :layout_height="wrap_content" :layout_width="wrap_content" :text="緯度"/> <EditText :layout_height="fill_parent" :layout_width="100px" :id="@+id/latitude"/> <Button :layout_width="wrap_content" :layout_height="wrap_content" :text="查找" :id="@+id/button"/> </LinearLayout> <com.amap.map.map.MapView :id="@+id/mapView" :layout_width="fill_parent" :layout_height="fill_parent" :clickable="true" /> </LinearLayout>
四、最后就是軟件的主程序部分了、里面需要的類(lèi)和方法不多,主要以按鈕的監(jiān)聽(tīng)器和地圖的界面實(shí)現(xiàn)為主 Java代碼 public void onCreate(Bundle savedInstanceState) { // this.setMapMode(MAP_MODE_VECTOR);//設(shè)置地圖為矢量模式 super.onCreate(savedInstanceState); setContentView(R.layout.main); mMapView = (MapView) findViewById(R.id.mapView); mMapView.setBuiltInZoomControls(true); // 設(shè)置啟用內(nèi)置的縮放控件 mMapController = mMapView.getController(); // 得到mMapView // 的控制權(quán),可以用它控制和驅(qū)動(dòng)平移和縮放 nt = new GeoPoint((int) (3
9.982378 * 1E6), (int) (11
6.304923 * 1E6)); // 用給定的經(jīng)緯度構(gòu)造一個(gè)GeoPoint,單位是微度(度* // 1E6) // 按鈕添加監(jiān)聽(tīng)器 button_location = (Button) findViewById(R.id.location); longitude = (EditText) findViewById(R.id.longitude); latite = (EditText) findViewById(R.id.latitude); locationListener = new OnClickListener() { public void onClick(View e) { if (e.equals(button_location)) { // 得到文本輸入框的中經(jīng)緯 度坐標(biāo)值 String latStr = longitude.getText().toString(); // 將得到的字符串轉(zhuǎn)成數(shù)值 double lat = Integer.parseInt(latStr); String lngStr = latite.getText().toString(); double lng = Integer.parseInt(lngStr); //轉(zhuǎn)成經(jīng)緯度坐標(biāo) lat=lat*1E6; lng=lng*1E6; // 用給定的經(jīng)緯度構(gòu)造一個(gè)GeoPoint,單位是微度(度*1E6) nt = new GeoPoint((int) (lat), (int) (lng)); mMapController.setCenter(nt); // 設(shè)置地圖中心點(diǎn) mMapController.setZoom(12); // 設(shè)置地圖zoom 級(jí)別 // 添加地圖覆蓋物 // MyLocationOverlay(this, mMapView); mylocTest.enableMyLocation(); // 判斷是否發(fā)現(xiàn)位置提供者 mylocTest.enableCompass(); // 打開(kāi)指南針 mMapView.getOverlays().add(mylocTest);// 添加標(biāo)注覆蓋物 } } }; // 按鈕添加監(jiān)聽(tīng)器 button_location.setOnClickListener(locationListener); mMapController.setCenter(nt); // 設(shè)置地圖中心點(diǎn) mMapController.setZoom(12); // 設(shè)置地圖zoom 級(jí)別 // 添加地圖覆蓋物 mylocTest = new MyLocationOverlay(this, mMapView); mylocTest.enableMyLocation(); // 判斷是否發(fā)現(xiàn)位置提供者 mylocTest.enableCompass(); // 打開(kāi)指南針 mMapView.getOverlays().add(mylocTest);// 添加標(biāo)注覆蓋物 } //另外一個(gè)添加界面覆蓋物的類(lèi): public class MyLocationOverlayProxy extends com.amap.map.map.MyLocationOverlay{ private Location mLocation; protected final Paint mPaint = new Paint(); protected final Paint mCirclePaint = new Paint(); private Bitmap gps_marker=null; private Point mMapCoords = new Point(); private final float gps_marker_CENTER_X; private final float gps_marker_CENTER_Y; private final LinkedList<Runnable> mRunOnFirstFix = new LinkedList<Runnable>(); public MyLocationOverlayProxy(amap amap, MapView mMapView) { super(amap, mMapView); gps_marker = ((BitmapDrawable) amap.getResources().getDrawable( R.drawable.marker_gpsvalid)).getBitmap(); gps_marker_CENTER_X = gps_marker.getWidth() / 2 - 0.5f; gps_marker_CENTER_Y= gps_marker.getHeight() / 2 - 0.5f; } public boolean runOnFirstFix(final Runnable runnable) { if (mLocation != null) { new Thread(runnable).start(); return true; } else { mRunOnFirstFix.addLast(runnable); return false; } } public void onLocationChanged(Location location) { // TODO Auto-generated method stub mLocation = location; for(final Runnable runnable : mRunOnFirstFix) { new Thread(runnable).start(); } mRunOnFirstFix.clear(); super.onLocationChanged(location); } protected void drawMyLocation(Canvas canvas, MapView mapView, final Location mLocation, GeoPoint nt, long time) { Projection pj=mapView.getProjection(); if (mLocation != null) { mMapCoords=pj.toPixels(nt, null); final float radius = pj.metersToEquatorPixels(mLocation.getAccuracy()); this.mCirclePaint.setAntiAlias(true); this.mCirclePaint.setARGB(35, 131, 182, 222); this.mCirclePaint.setAlpha(50); this.mCirclePaint.setStyle(Style.FILL); canvas.drawCircle(mMapCoords.x, mMapCoords.y, radius, this.mCirclePaint); this.mCirclePaint.setARGB(225, 131, 182, 222); this.mCirclePaint.setAlpha(150); this.mCirclePaint.setStyle(Style.STROKE); canvas.drawCircle(mMapCoords.x, mMapCoords.y, radius, this.mCirclePaint); canvas.drawBitmap(gps_marker, mMapCoords.x-gps_marker_CENTER_X, mMapCoords.y-gps_marker_CENTER_Y, this.mPaint); } } }
地圖怎么標(biāo)注不上單位名稱(chēng)?
沙紓釋筱
的地圖是四維圖新公司的,去聯(lián)系龍圖智航科技有限公司,付費(fèi)的,主要功能是國(guó)內(nèi)平面媒體就有所顯示了,比如,搜狗,導(dǎo)航犬,12580,圖吧等等,導(dǎo)航用戶(hù)也不可以導(dǎo)航完成了;贊!
云燁
alongk
為什么地圖上標(biāo)注后不顯示名稱(chēng)
兜兜
標(biāo)注地圖不顯示,怎么處理
地圖電腦上不顯示標(biāo)注
如何在鼠標(biāo)拖動(dòng)后地圖的中心點(diǎn)添加標(biāo)注
南大國(guó)
地圖電腦上不顯示標(biāo)注
minecraft 地圖中心點(diǎn)為什么不是自己的位置
僧哥媽
孔明丶991