Google Maps API 调用实例
本实例介绍如何调用Google Maps API,并实现用鼠标标注地图,保存进数据库,以及二次加载显示等。
1.需要新建一个自定义控件(如:Map.ascx),用于显示Google地图:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Map.ascx.cs" Inherits="StarSoft.UI.Customer.UserControl.Map" %>
<div id="map" style="width: 100%; height: 360px;">
</div>
<table style="display: none">
<tr>
<td width="60px">
<span>
纬度</span>
</td>
<td>
<asp:TextBox ID="txtY" runat="server" CssClass="txtbase" onfocus="this.className='txtfocus';"
onblur="this.className='txtbase';" onpropertychange="javascript:CheckInputFloat(this);"></asp:TextBox>
</td>
<td>
<span>
经度</span>
</td>
<td>
<asp:TextBox ID="txtX" runat="server" CssClass="txtbase" onfocus="this.className='txtfocus';"
onblur="this.className='txtbase';" onpropertychange="javascript:CheckInputFloat(this);"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="4">
<script src=" http://ditu.google.com/maps?file=api&v=2&sensor=false&key=<%=System.Configuration.ConfigurationSettings.AppSettings["googlemapkey"].Trim() %>"
type="text/javascript"></script>
<script language="javascript" type="text/javascript">
function CheckInputFloat(oInput) {
if ('' != oInput.value.replace(/\d{1,}\.{0,1}\d{0,}/, '')) {
oInput.value = oInput.value.match(/\d{1,}\.{0,1}\d{0,}/) == null ? '' : oInput.value.match(/\d{1,}\.{0,1}\d{0,}/);
}
} //<![CDATA[
var x;
var geocoder;
var marker;
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
var LatValue = document.getElementById("<%=txtX.ClientID%>").value;
var LngValue = document.getElementById("<%=txtY.ClientID%>").value;
if ((LatValue == "") || (LngValue == "")) {
map.setCenter(new GLatLng(30.25372, 120.13343), 13);
}
else {
map.setCenter(new GLatLng(LatValue, LngValue), 13);
var curpoint = new GLatLng(LatValue, LngValue);
marker = new GMarker(curpoint, this.ico);
map.addOverlay(marker);
}
geocoder = new GClientGeocoder();
}
function createMarker(point, title, html) {
var marker = new GMarker(point);
//GEvent.addListener(marker, "click", function(){marker.openInfoWindowHtml(html,{maxContent: html,maxTitle: title});});
return marker;
}
function showAddress(address) {
if (geocoder) {
geocoder.getLatLng(
'中国' + address,
function (point) {
if (!point) {
// alert(address + " 未找到");
}
else {
if (marker)//移除上一個點
{
map.removeOverlay(marker);
}
map.setCenter(point, 13);
var title = "地址";
marker = createMarker(point, title, address);
map.addOverlay(marker);
//marker.openInfoWindowHtml(address,{ maxContent: address, maxTitle: title});
}
}
);
}
}
GEvent.addListener(map, 'click', function (overlay, point) {
if (point) {
map.clearOverlays();
var marker = new GMarker(point, { draggable: true });
map.addOverlay(marker); GEvent.addListener(marker, "dragstart", function () {
});
GEvent.addListener(marker, "dragend", function () {
point = marker.getLatLng();
document.getElementById("<%=txtY.ClientID%>").value = point.x;
document.getElementById("<%=txtX.ClientID%>").value = point.y;
});
document.getElementById("<%=txtY.ClientID%>").value = point.x;
document.getElementById("<%=txtX.ClientID%>").value = point.y;
}
});
map.enableScrollWheelZoom();
map.addControl(new GSmallZoomControl());
map.addControl(new GMapTypeControl()); //]]>
</script>
</td>
</tr>
</table>
Map.ascx
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq; namespace StarSoft.UI.Customer.UserControl
{
public partial class Map : System.Web.UI.UserControl
{
/// <summary>
/// 纬度
/// </summary>
public string Latitude
{
get { return this.txtX.Text; }
set { this.txtX.Text = value; }
}
/// <summary>
/// 经度
/// </summary>
public string Longitude
{
get { return this.txtY.Text; }
set { this.txtY.Text = value; }
} protected void Page_Load(object sender, EventArgs e)
{ }
}
}
Map.ascx.cs
2.页面中调用这个自定义控件:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AreaLocation.aspx.cs" Inherits="StarSoft.UI.Customer.AreaLocation" %> <%@ Register src="UserControl/Map.ascx" tagname="Map" tagprefix="uc1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<webcontrol:Style ID="Style" runat="server" />
<script language="javascript" type="text/javascript">
function ChooseLoaction()
{
var txtX=document.getElementById('<%=Map1.FindControl("txtX").ClientID %>').value;
var txtY= document.getElementById('<%=Map1.FindControl("txtY").ClientID %>').value;
if(txtX=="")
{
alert('请选择经纬度!');
}
else
{
window.returnVal = txtX+"|"+ txtY;
window.parent.hidePopWin(true);
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div class="popForm" >
<div class="mainForm">
<uc1:Map ID="Map1" runat="server" />
</div></div> <div class="operArea">
<div class="btnArea" >
<input type="button" id="BtnQuery" class="btnSubmit" runat="server" onclick="javascript:ChooseLoaction();"/>
<input type="button" id="close" class="btnReturn" onclick="javascript:parent.hidePopWin(false);" runat="server"/>
</div>
</div>
</form>
</body>
</html>
AreaLocation。aspx
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq; namespace StarSoft.UI.Customer
{
public partial class AreaLocation : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!string.IsNullOrEmpty(StrLoactID) && StrLoactID != "null")
{
Map1.Latitude = StrLoactID.Split(',')[];
Map1.Longitude = StrLoactID.Split(',')[];
} if (!IsPostBack)
{
BtnQuery.Value = StarSoft.Common.ResourceManager.Field("Query");
close.Value = StarSoft.Common.ResourceManager.Field("CancelBtn");
if (Ty != "")
{
close.Value = StarSoft.Common.ResourceManager.Field("CloseBtn");
BtnQuery.Style["display"] = "none";
}
}
} /// <summary>
/// 经纬度信息
/// </summary>
public string StrLoactID
{
get
{
try
{
return Request.Params["LoactID"].ToString();
}
catch
{
return "";
}
}
} /// <summary>
/// 经纬度信息
/// </summary>
public string Ty
{
get
{
try
{
return Request.Params["Ty"].ToString();
}
catch
{
return "";
}
}
}
}
}
AreaLocation。aspx.cs
3.web.config文件中配置Google Map访问秘钥:
<add key="googlemapkey" value="ABQIAAAAFLEnBlXXNVEsCX6NrllENxRtJCFYwXExx0HqCDFUHyWjOHbgXhTNZ_AeqPjv3EmRwdeButm3wRXAuw"/>
运行效果图:
Google Maps API 调用实例的更多相关文章
- Google maps API开发(二)(转)
这一篇主要实现怎么调用Google maps API中的地址解析核心类GClientGeocoder: 主要功能包括地址解析.反向解析.本地搜索.周边搜索等, 我这里主要有两个实例: 实例一.当你搜索 ...
- Google Maps API Web Services
原文:Google Maps API Web Services 摘自:https://developers.google.com/maps/documentation/webservices/ Goo ...
- Google maps API开发
原文:Google maps API开发 Google maps API开发(一) 最近做一个小东西用到google map,突击了一下,收获不小,把自己学习的一些小例子记录下来吧 一.加载Googl ...
- Google Maps API V3 之绘图库 信息窗口
Google官方教程: Google 地图 API V3 使用入门 Google 地图 API V3 针对移动设备进行开发 Google 地图 API V3 之事件 Google 地图 API V3 ...
- Google Maps API V3 之 图层
Google官方教程: Google 地图 API V3 使用入门 Google 地图 API V3 针对移动设备进行开发 Google 地图 API V3 之事件 Google 地图 API V3 ...
- Google Maps API V3 之 路线服务
Google官方教程: Google 地图 API V3 使用入门 Google 地图 API V3 针对移动设备进行开发 Google 地图 API V3 之事件 Google 地图 API V3 ...
- Google maps API开发(一)(转)
一.加载Google maps API <script type="text/javascript" src="http://ditu.google.com/map ...
- Google Maps API的使用
之前在学习了简单的API调用后,查看了几个知名网站的API调用方法,发现Google的API调用还是相对比较简单的.下面就从API key的获取.googlemaps的安装,再到实际使用做一下说明. ...
- Android Google Maps API 网络服务用于网络定位、计算路线、获取经纬度、获取详细地址等
extends:http://blog.csdn.net/h7870181/article/details/12505883 Google Maps API 网络服务 官网地址 : https://d ...
- google maps api申请的问题
现在已经改由统一的GOOGLE API控制台进行所有GOOGLE API的管理了. 方法是使用Google帐号登入 https://code.google.com/apis/console. 然后在所 ...
随机推荐
- POJ2891 - Strange Way to Express Integers(模线性方程组)
题目大意 求最小整数x,满足x≡a[i](mod m[i])(没有保证所有m[i]两两互质) 题解 中国剩余定理显然不行....只能用方程组两两合并的方法求出最终的解,刘汝佳黑书P230有讲~~具体证 ...
- hadoop-2.6.0.tar.gz + spark-1.5.2-bin-hadoop2.6.tgz的集群搭建(单节点)
前言 本人呕心沥血所写,经过好一段时间反复锤炼和整理修改.感谢所参考的博友们!同时,欢迎前来查阅赏脸的博友们收藏和转载,附上本人的链接.http://www.cnblogs.com/zlslch/p/ ...
- go语言与所谓的包
import后面接的是目录的名字,而不是所谓包的名字,并且如果一个目录下面还有目录的话都必须要写进去,比如: import "MyPackage" import "MyP ...
- php排序之快速排序
关于快速排序的介绍 请看百度百科讲解的很详细 http://baike.baidu.com/link?url=1VOpp4qjdwKma81MFPozjvyPy2rYJos6ZmfP5Ady3xjEP ...
- IOS开发之TableView替换默认的checkmark为自定义图像
直接上代码: On cellForRowAtIndexPath: UIButton*button =[UIButton buttonWithType:UIButtonTypeCustom];CGRec ...
- linux下.run文件的安装与卸载
linux下.run文件的安装与卸载 .run文件的安装很简单,只需要为该文件增加可执行属性,即可执行安装 以 virtualbox 的安装文件 virtualbox-3.1.6-59338-Li ...
- [Webpack 2] Add Code Coverage to tests in a Webpack project
How much of your code runs during unit testing is an extremely valuable metric to track. Utilizing c ...
- Java 加密 MD5
版权声明:本文为博主原创文章,未经博主允许不得转载. [md5] md5是一种哈希算法,哈希算法是啥? ... 特点是不能解密. [代码] package com.uikoo9.util.encryp ...
- Redis学习手册(String数据类型)
一.概述: 字符串类型是Redis中最为基础的数据存储类型,它在Redis中是二进制安全的,这便意味着该类型可以接受任何格式的数据,如JPEG图像数据或Json对象描述信息等.在Redis中字符串类型 ...
- C#数据库读取数据后转换为INT32后计算的小技巧
这有什么难的,不管是什么数据库, 首先分别读出userinfo中usermoney的值 存入s1,card中extramoney的值s2 读出字段数据你应该会吧! 再用userinfo中字段userm ...