地圖如何打標記?
地圖標記,怎樣才能在地圖里標記50個的標記?
地圖什么時候可以做標記?
無痕
地圖怎么不能標記?有沒有可以標記的電子地圖?
地圖電腦標記之后手機地圖標記的地方看不了?
怎么在地圖標記
怎么在地圖標記
懶惰的小蜜蜂
1、注冊登陸,完善個人信息:直接訪問 lbc.baidu注冊賬號,激活并完善個人信息; 或通過地圖主頁右上角點擊“商戶免費標注”完成注冊登陸。
2、能查到指路人地圖標注服務中心鋪,可以直接認領:請在地圖上方的框中輸入您的指路人地圖標注服務中心鋪,如果能夠查到您的指路人地圖標注服務中心鋪,請直接認領,認領時需要上傳您的證照資質。如果無法查到,請先標注其所在的位置,再進行認領。
3、查不到指路人地圖標注服務中心鋪,先標注,再認領點擊“我要標注”,填寫商戶名稱和精確的地址位置,精確到門牌號。點擊“標注商戶位置”,雙擊地圖,放大地圖比例。地圖比例越大,標注的準確度越高。需要放到最大層級,即雙擊鼠標地圖不再放大,地圖能夠清楚顯示你所在位置的周邊環境為止。參照你周邊的地標性建筑,拖拽地圖中的紅點,標注到你認為最準確的位置,點擊確定提交后,在進行認領。
4、提交申請后,需要5-7天的審核期。
嘎嘎
地圖電腦標記之后手機地圖標記的地方看不了?
有誰知道iOS開發怎么能將根據地圖搜索API搜索出來的地名直接標注在地圖中心點上嗎?
花次元
二、我們在不熟悉的情況下、先盡量多的添加此軟件應用權限;所以在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中添加界面布局了。其代碼如下、你可以完全復制進去。 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="經度"/> <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>
四、最后就是軟件的主程序部分了、里面需要的類和方法不多,主要以按鈕的監聽器和地圖的界面實現為主 Java代碼 public void onCreate(Bundle savedInstanceState) { // this.setMapMode(MAP_MODE_VECTOR);//設置地圖為矢量模式 super.onCreate(savedInstanceState); setContentView(R.layout.main); mMapView = (MapView) findViewById(R.id.mapView); mMapView.setBuiltInZoomControls(true); // 設置啟用內置的縮放控件 mMapController = mMapView.getController(); // 得到mMapView // 的控制權,可以用它控制和驅動平移和縮放 nt = new GeoPoint((int) (3
9.982378 * 1E6), (int) (11
6.304923 * 1E6)); // 用給定的經緯度構造一個GeoPoint,單位是微度(度* // 1E6) // 按鈕添加監聽器 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)) { // 得到文本輸入框的中經緯 度坐標值 String latStr = longitude.getText().toString(); // 將得到的字符串轉成數值 double lat = Integer.parseInt(latStr); String lngStr = latite.getText().toString(); double lng = Integer.parseInt(lngStr); //轉成經緯度坐標 lat=lat*1E6; lng=lng*1E6; // 用給定的經緯度構造一個GeoPoint,單位是微度(度*1E6) nt = new GeoPoint((int) (lat), (int) (lng)); mMapController.setCenter(nt); // 設置地圖中心點 mMapController.setZoom(12); // 設置地圖zoom 級別 // 添加地圖覆蓋物 // MyLocationOverlay(this, mMapView); mylocTest.enableMyLocation(); // 判斷是否發現位置提供者 mylocTest.enableCompass(); // 打開指南針 mMapView.getOverlays().add(mylocTest);// 添加標注覆蓋物 } } }; // 按鈕添加監聽器 button_location.setOnClickListener(locationListener); mMapController.setCenter(nt); // 設置地圖中心點 mMapController.setZoom(12); // 設置地圖zoom 級別 // 添加地圖覆蓋物 mylocTest = new MyLocationOverlay(this, mMapView); mylocTest.enableMyLocation(); // 判斷是否發現位置提供者 mylocTest.enableCompass(); // 打開指南針 mMapView.getOverlays().add(mylocTest);// 添加標注覆蓋物 } //另外一個添加界面覆蓋物的類: 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); } } }
地圖怎么不能標記?有沒有可以標記的電子地圖?
地圖怎么標記地點
地圖如何導出標記?
小時光
地圖是四維圖新公司的,去聯系龍圖智航科技有限公司,付費的,主要功能是國內平面媒體就有所顯示了,比如,搜狗,導航犬,12580,圖吧等等,導航用戶也不可以導航完成了;贊!
子曰?
3、登陸成功時,會有版自己的帳戶名出現。
4、找到需要標注的權地點。
5、點擊標注按鈕。
6、左鍵標志,并添加地址信息,保存。
7、完成位置標志。
8、關鍵一步,點擊“收藏”,收藏成功,標志會變為黃色。
9、以后只要登錄賬戶打開地圖,在收藏的位置就可以找到已經保存的地址。
地圖的標記問題、急!
手機地圖如何標記!???
肉松
劉亞?
地圖怎么標記上去
蘿卜
1、做競價官方進行贈送。
2、網友進行自行的標記,需要經過審核。地圖標記需要了解:
1、審核時間為7個工作日。
2、必須提供營業執照。
3、商戶名稱不一定和營業執照一直。
地圖怎么標記多個地點?
秋茉
地圖如何標記
地圖城市名稱-中心點經緯度 后面的 |n表示什么含義?
地圖里怎么標記公司位置 地圖標記公司位置教
那時晨風
首先在地圖上找到你公司所處的位置,然后點擊地圖上方的“標記”兩個字,再再地圖上你公司相應的位置點一下,并在彈出窗口里填寫“名稱”和“備注”,最后點擊'保存"就可以了.