方法一:JS方法
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript"src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
var geocoder;
var map;
function initialize() {
geocoder =new google.maps.Geocoder();
var latlng =new google.maps.LatLng(34.264987, 108.94426900000007);
var myOptions = {
zoom: 12,
center: latlng,
mapTypeId:google.maps.MapTypeId.ROADMAP
}
map =new google.maps.Map(document.getElementById("map_canvas"), myOptions);
//初始化标注添加以下代码
marker =new google.maps.Marker({
title: '',
map: map,
position:latlng
});
var infowindow =new google.maps.InfoWindow({
content: '<strong>love</strong>'
});
infowindow.open(map, marker);
}
functioncodeAddress() {
varaddress = document.getElementById("address").value;
geocoder.geocode({ 'address': address }, function(results, status) {
if(status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
this.marker =newgoogle.maps.Marker({
title: address,
map: map,
position:results[0].geometry.location
});
var infowindow =newgoogle.maps.InfoWindow({
content: '<strong>'+ address +'</strong><br/>'+'纬度: '+ results[0].geometry.location.lat() +'<br/>经度: '+ results[0].geometry.location.lng()
});
infowindow.open(map, marker);
} else {
alert("Geocode was not successful for the following reason:"+ status);
}
alert('纬度: '+ results[0].geometry.location.lat() +'<br/>经度: '+ results[0].geometry.location.lng())
});
}
</script>
</head>
<body onload="initialize()">
<div>
<input id="address" type="text" value="西安市">
<input type="button" value="地址解析" onclick="codeAddress()">
</div>
<div id="map_canvas" style="height:90%;top:30px"></div>
</body>
</html>
方法二:ASP.NET方法
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
//使用方法,g.Latitude=经度,g.Longtitude=纬度
//mapClass.Geo g = new mapClass.Geo("西安");
//Response.Write(g.Latitude + "<br>" +g.Longtitude);
namespace mapClass
{
publicclassGeo
{
///
/// latitude
///
privatestring _latitude = "";
///
/// longtitude
///
privatestring _longtitude = "";
///
/// default constructor
///
publicGeo()
{
}
///
/// construct geo given latitude and longtitude
///
publicGeo(string latitude, stringlongtitude)
{
_latitude = latitude;
_longtitude =longtitude;
}
///
/// construct geo given name of a place
///
publicGeo(string location)
{
stringoutput = "csv";
stringurl = string.Format("http://maps.google.com/maps/geo?q={0}&output={1}",location, output);
try
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
using (HttpWebResponseresponse = (HttpWebResponse)request.GetResponse())
{
using (StreamReadersr = newStreamReader(response.GetResponseStream()))
{
string[] tmpArray = sr.ReadToEnd().Split(',');
_latitude =tmpArray[2];
_longtitude= tmpArray[3];
}
}
}
catch(System.Net.Sockets.SocketException ex)
{
Console.WriteLine("网络中断");
}
catch(Exception ex)
{
//throw ex;
Console.WriteLine("异常类型:{0}", ex.GetType());
Console.WriteLine("异常信息:{0}", ex.Message);
Console.WriteLine("异常来源:{0}", ex.Source);
Console.WriteLine("异常堆栈:{0}", ex.StackTrace);
Console.WriteLine("内部异常:{0}", ex.InnerException);
}
}
///
/// get latitude
///
publicstring Latitude
{
get{ return _latitude; }
set{ _latitude = value; }
}
///
/// get longtitude
///
publicstring Longtitude
{
get{ return _longtitude; }
set{ _longtitude = value; }
}
}
}
引自:http://www.2cto.com/kf/201203/124622.html
分享到:
相关推荐
本项目专注于批量获取地址的经纬度,使用了Java编程语言,结合谷歌地图API来实现这一功能。下面将详细阐述相关知识点。 1. **Java编程基础**: Java是一种广泛使用的面向对象的编程语言,具有跨平台性、高效性和...
这里,我们将深入探讨“Google地图经纬度偏差纠正”这一主题。 首先,GPS接收器获取的原始坐标是基于WGS84(World Geodetic System 1984)坐标系统,这是一个国际通用的大地坐标系,用于全球定位。然而,Google地球...
这是我的文章【Google地图经纬度与平面坐标的相互转换、简单地图Demo】的附件,内含无水印世界地图、简单地图demo源码 接到公司派下来的一个任务,让我做一个简单的地图Demo,要求是输入城市名,然后在地图上标记出...
综合上述内容,我们可以了解到,通过Google地图API获取地区经纬度信息是一个涉及网络编程、数据解析和地理知识的复杂过程。开发者在实际应用中需要按照Google地图API的文档进行编程,并根据业务需求灵活地处理和使用...
总的来说,通过C#调用谷歌地图API进行地理编码,可以帮助开发者在各种项目中轻松获取地名对应的经纬度信息,从而实现各种基于地理位置的功能,如定位、导航、距离计算等。在开发时,请务必遵守谷歌地图API的使用政策...
"GOOGLE地图经纬度批量查询V1.0"是一款专为处理此类需求设计的工具,它允许用户快速、有效地获取大量地址的经纬度信息。在本文中,我们将深入探讨谷歌地图API的使用,经纬度的概念,以及批量查询的实现方法。 首先...
根据经纬度获取google地图海拔
一个google map小应用 应用google map api可以获得点的经纬度并且可以根据地理位置名称定位。
在Web端实现点击地图获取经纬度,通常我们会使用地图API,如Google Maps API、高德地图API或百度地图API等。这里以Google Maps API为例进行讲解。首先,在HTML文件中引入Google Maps API的JavaScript库,并创建一个...
"GOOGLE地图经纬度批量查询"工具就是一个专为获取大量地点经纬度信息而设计的小型软件,无需安装即可使用,极大地简化了地理坐标获取的过程。 经纬度是地球上位置的标准化坐标系统,经度表示东西方向的位置,纬度则...
在标题“利用google地图根据地址批量获取经纬度”中,我们关注的核心技术是通过Google Maps API来处理地理位置数据,特别是批量处理地址以获得对应的经纬度坐标。这在数据分析、物流管理、地图服务、位置追踪等场景...
GOOGLE地图经纬度批量查询V1.0 官方下载站:http://www.cvcphp.com/soft.html ------------------------------------------------------------------------------------ 软件功能: 1、批量查询GOOGLE上的经纬度...
批量经纬度获取地址软件(需联网使用,含批量 谷歌 经纬度 转 高德 经纬度 功能) 使用方法:双击exe打开软件,提示是否需要生成模板表格,输入是回车则生成表格模板,填写好谷歌数据后保存关闭表格,再双击软件重新...
例如,谷歌地图API提供了`google.maps.Map`对象的`click`事件,当用户点击地图时,可以获取到`LatLng`对象,包含了点击位置的经度和纬度。 2. GPS定位:在移动设备上,可以通过GPS(全球定位系统)获取实时的经纬度...
地图经纬度互换(百度,高德,谷歌,腾讯,搜狗) 具有以下功能 1、通过经纬度获取地址信息。 2、通过地址信息获取经纬度。 3、高德谷歌经纬度转百度地图经纬度。 4、百度经纬度转高德谷歌经纬度。 注,本程序来自于...
vba《调用Google地图获取地址经纬度填入Excel并存储到数据库》
### Google地图经纬度偏移修正算法详解 #### 一、背景介绍 在互联网地图服务领域,为了保护自身的数据安全及防止地图数据被非法利用,许多地图服务商如Google Maps等会采用一种称为“加密偏移”(也称为坐标偏移或...
本篇将围绕"Google地图经纬度偏差纠正 C++ 源代码"这一主题,深入探讨相关知识点。 首先,GPS坐标系统通常采用WGS84标准,这是一种国际地球参考系统,用于确定地球上任何一点的精确位置。而Google地图使用的是...
"连接Google地图获取经纬度"这个主题涉及到的关键技术主要包括地理编码(Geocoding)和API调用。下面将详细介绍这两个核心概念以及如何实现这个小工具。 地理编码是将地址转化为经纬度坐标的过程,它使得我们可以将...
使用方法:双击软件弹出窗口提示是否需要新建模板,如果有模板的情况下直接点击回车,弹出文件拾取框选择模板表格文件确定执行程序