一个根据GPS信息在地图上的定位的小demo
布局文件main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:gravity="center_horizontal">
<TextView android:text="经度" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText android:id="@+id/lng" android:layout_width="85px"
android:layout_height="wrap_content" />
<TextView android:text="纬度" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText android:id="@+id/lat" android:layout_width="85px"
android:layout_height="wrap_content" />
<Button android:id="@+id/loc" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="定位"/>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:gravity="center_horizontal">
<RadioGroup android:id="@+id/rg" android:orientation="horizontal"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1">
<RadioButton android:text="普通" android:id="@+id/normal"
android:checked="true" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<RadioButton android:text="卫星" android:id="@+id/satellite"
android:layout_width="wrap_content" android:layout_height="wrap_content" />
</RadioGroup>
</LinearLayout>
<com.google.android.maps.MapView
android:id="@+id/mv" android:clickable="true" android:enabled="true"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:apiKey="0kcrUw1E0GWVCoo6chWBqqxAxiLQGpqgcTII6HQ" />
</LinearLayout>
主界面文件
package com.hc;
import java.util.List;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
import android.widget.Toast;
public class GooglemapActivity extends MapActivity {
/** Called when the activity is first created. */
Button locBn;
RadioGroup mapType;
MapView mv;
EditText etLng, etLat;
MapController controller;
Bitmap posBitmap;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
posBitmap = BitmapFactory.decodeResource(getResources(),
R.drawable.icon);
mv = (MapView) findViewById(R.id.mv);
etLng = (EditText) findViewById(R.id.lng);
etLat = (EditText) findViewById(R.id.lat);
// 显示放大缩小控制按钮
mv.setBuiltInZoomControls(true);
controller = mv.getController();
locBn = (Button) findViewById(R.id.loc);
locBn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String lng = etLng.getEditableText().toString().trim();
String lat = etLat.getEditableText().toString().trim();
if (lng.equals("") || lat.equals("")) {
Toast.makeText(GooglemapActivity.this, "输入有效经度维度",
Toast.LENGTH_LONG).show();
} else {
double dlong = Double.parseDouble(lng);
double dLat = Double.parseDouble(lat);
UpdateMapView(dlong, dLat);
}
}
});
locBn.performClick();
mapType = (RadioGroup) findViewById(R.id.rg);
mapType.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
switch (checkedId) {
case R.id.normal:
mv.setSatellite(false);
break;
case R.id.satellite:
mv.setSatellite(true);
break;
}
}
});
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return true;
}
private void UpdateMapView(double dlong, double dLat) {
GeoPoint gp = new GeoPoint((int)(dLat*1E6), (int)(dlong*1E6));
mv.displayZoomControls(true);
controller.animateTo(gp);
List<Overlay> ol = mv.getOverlays();
ol.clear();
ol.add(new PosOverLay(gp, posBitmap));
}
}
地图上显示的自定义定位图片
package com.hc;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import com.google.android.maps.Projection;
public class PosOverLay extends Overlay {
Bitmap posBitmap;
GeoPoint gp;
public PosOverLay(GeoPoint gp,Bitmap posBitmap){
super();
this.gp=gp;
this.posBitmap=posBitmap;
}
@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow) {
if(!shadow){
Projection proj = mapView.getProjection();
Point p= new Point();
proj.toPixels(gp, p);
canvas.drawBitmap(posBitmap, p.x-posBitmap.getWidth()/2,p.y-posBitmap.getHeight(), null);
}
}
}
manifest文件中加入两条
<uses-permission android:name="android.permission.INTERNET"/> 网络权限
<uses-library android:name="com.google.android.maps"/>
效果如下
- 大小: 52.3 KB
分享到:
相关推荐
总之,Android中的GoogleMap定位涉及多个步骤,包括引入依赖、配置权限、初始化地图、开启定位服务、获取和处理位置信息,以及可能的自定义功能扩展。开发者可以根据需求灵活运用这些知识点,构建丰富的地图应用功能...
为了显示地图并启用定位,我们需要创建一个GoogleMap对象,并设置地图类型和定位选项。在onMapReady()回调中: ```java @Override public void onMapReady(GoogleMap googleMap) { map = googleMap; map....
在Android布局文件中添加MapView组件,通过设置API密钥和初始化GoogleMap对象,可以实现在应用中展示地图。同时,可以通过调整Zoom级别来控制地图的缩放程度,使用CameraPosition和CameraUpdateFactory来改变视图...
"android"标签表明了这是关于Android平台的开发内容,而"googleMap"则指明了主要涉及Google Maps服务。在Android应用中集成Google Maps,开发者需要在Google Cloud Console创建项目,获取API密钥,然后在...
5. **地图初始化**:在代码中,需要初始化GoogleMap对象,如`mapFragment.getMapAsync(new OnMapReadyCallback() {...})`,并在回调中进行地图设置和事件处理。 6. **位置权限**:Android 6.0(Marshmallow)及以上...
public void onMapReady(GoogleMap googleMap) { // 这里可以进一步配置地图,比如设置缩放级别、启用定位等 } }); ``` 不忘在其他生命周期方法(如onResume(), onPause(), onDestroy())中调用对应的方法。 ...
public void onMapReady(GoogleMap googleMap) { this.googleMap = googleMap; // 添加自定义图标或默认图标的位置标记 MarkerOptions markerOptions = new MarkerOptions().position(new LatLng(37.4219999, -...
接着,创建一个`GoogleMap`对象并设置其基本配置,如地图类型、缩放级别等: ```java GoogleMap map = mapView.getMap(); map.setMapType(GoogleMap.MAP_TYPE_NORMAL); map.getUiSettings().setZoomControlsEnabled...
在IT行业中,GoogleMap定位系统和与Web服务的连接是两个关键的技术领域,它们在现代移动应用和Web应用中有着广泛的应用。以下是这些技术的详细解释: **GoogleMap定位系统**: GoogleMap定位系统是Google提供的一项...
googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL); LatLng sydney = new LatLng(-34, 151); MarkerOptions markerOptions = new MarkerOptions().position(sydney).title("悉尼"); googleMap.addMarker...
googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL); googleMap.getUiSettings().setZoomControlsEnabled(true); } // 在其他生命周期方法中进行对应处理 // ... } ``` 现在地图已经可以展示了,接下来我们介绍...
这里,`onMapReady()`方法会在`MapFragment`准备就绪后被调用,此时你可以获取到`GoogleMap`对象并启用定位功能。如果用户未授予定位权限,你需要处理权限请求。 为了显示用户的位置,`setMyLocationEnabled(true)`...
在这里,你可以获取到GoogleMap对象,进一步操作地图,例如设置初始位置、缩放级别,或者添加标记。 关于GPSTest,这是一个常见的Android GPS测试应用的名字,它通常用于测试设备的GPS接收器功能。在Android中,你...
使用GoogleMap对象的setMapType方法可选择显示不同类型的地图,如普通地图、卫星图、地形图等。通过setMyLocationEnabled(true)开启用户位置追踪,显示蓝点。 5. **添加Marker** Marker是地图上的图标,可以表示...
在Android开发中,Google Map API是一项重要的功能,它允许开发者集成地图到应用程序中,实现诸如定位、导航、路径规划等多种功能。本实例是关于如何在Android应用中集成和使用Google Map的一个具体实践。 首先,要...
googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL); // 启用定位 if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED) { google...
知识点:集成Google Maps API到Android应用 在深入探讨如何在Android应用中集成Google Maps API之前,我们先了解一些基础知识。 **Google Maps Android API概述** Google Maps Android API是Google提供的一套工具...
此资料包含 Android学习笔记 - 地图.doc 通过地名获得经纬度并标识在地图上.doc 点中overlay弹出带尾巴的气泡的实现.doc ...android map.doc Android地图和定位学习总结 .doc 希望对大家有帮助。。。。
这个精心收集的"android googlemap开发实例与教程"涵盖了如何利用Google Maps API进行定位、显示地图和处理地图信息的核心技术。 首先,我们要理解`LocationMap`和`55593377LocationMap`这两个文件名可能代表的是两...