房地产开发项目经纬度转换坐标坐标如何查询

&&问题详情
知道了坐标点的经纬度怎么算面积呢?
地块36°51′28,105°18′25.2〃
.9〃36°52′47.4〃36°51′41.6〃36°50′06,105°18′35.3〃36°50′11,105°16′59.1〃
,105°17′29,105°16′52.1〃36°53′52.7〃36°51′45.2〃36°51′35,105°20′08,105°20′08.4〃36°51′35.9〃d地块36°53′52,105°19′48,105°17′03.0〃36°53′36.0〃36°53′51,105°18′25,105°20′23.6〃b地块36°50′08,105°18′35.2〃
.8〃36°51′41.2〃
,105°18′22,105°18′02.3〃 36°50′08,105°18′54.7〃
,105°18′54.1〃
,105°17′39,105°17′36.3〃c地块36°53′18.2〃
,105°16′59.1〃
.7〃36°53′46.9〃36°52′11.6〃 .1〃
,105°18′23.1〃36°51′45.3〃36°53′39
您的回答过短,请将答案描述得更清楚一些
回答被采纳后将获得系统奖励20
手机动态登录
请输入用户名/邮箱/手机号码!
请输入密码!
Copyright &
Shang Hai Jing Rong Xin Xi Ke Ji You Xian Gong Si
上海旌荣信息科技有限公司 版权所有
客服电话: 400-850-8888 违法信息举报邮箱:下次自动登录
现在的位置:
& 综合 & 正文
高德地图根据关键字查询,拾取坐标经纬度。
&!DOCTYPE html&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&title&关键字查询&/title&
&link rel="stylesheet" type="text/css"
href="css/demo.Default.css" /&
type="text/javascript"
src="/maps?v=1.2&key=571bdde43751cabad54cec6"&&/script&
&script language="javascript"&
var marker = new Array();
var windowsArr = new Array();
//基本地图加载
function mapInit() {
mapObj = new AMap.Map("iCenter");
//AMap.event.addListener(mapObj,'click',getLnglat);
function placeSearch() {
mapObj.plugin(["AMap.PlaceSearch"], function() {
MSearch = new AMap.PlaceSearch({ //构造地点查询类
pageSize:10,
pageIndex:1,
city:"021" //城市
AMap.event.addListener(MSearch, "complete", keywordSearch_CallBack);//返回地点查询结果
var searchName = document.all.searchText.//查询关键字
MSearch.search(searchName); //关键字查询
//添加marker&infowindow
function addmarker(i, d) {
var lngX = d.location.getLng();
var latY = d.location.getLat();
var markerOption = {
map:mapObj,
icon:"/images/" + (i + 1) + ".png",
position:new AMap.LngLat(lngX, latY)
var mar = new AMap.Marker(markerOption);
marker.push(new AMap.LngLat(lngX, latY));
var infoWindow = Window({
content:"&h3&&font color=\"#00a6ac\"&
" + (i + 1) + ". " + d.name + "&/font&&/h3&" + TipContents(d.type, d.address, d.tel),
size:new AMap.Size(300, 0),
autoMove:true,
offset:new AMap.Pixel(0,-30)
windowsArr.push(infoWindow);
var aa = function (e) {infoWindow.open(mapObj, mar.getPosition());};
AMap.event.addListener(mar, "click", aa);
AMap.event.addListener(mar,'click',getLnglat);
//回调函数
function keywordSearch_CallBack(data) {
var resultStr = "";
var poiArr = data.poiList.
var resultCount = poiArr.
for (var i = 0; i & resultC i++) {
resultStr += "&div id='divid" + (i + 1) + "' onclick='openMarkerTipById1(" + i + ",this)' onmouseout='onmouseout_MarkerStyle(" + (i + 1) + ",this)' style=\"font-size: 12cursor:padding:0px 0 4px 2 border-bottom:1px solid #C1FFC1;\"&&table&&tr&&td&&img src=\"/images/" + (i + 1) + ".png\"&&/td&" + "&td&&h3&&font color=\"#00a6ac\"&名称: " + poiArr[i].name + "&/font&&/h3&";
resultStr += TipContents(poiArr[i].type, poiArr[i].address, poiArr[i].tel) + "&/td&&/tr&&/table&&/div&";
addmarker(i, poiArr[i]);
mapObj.setFitView();
document.getElementById("result").innerHTML = resultS
function TipContents(type, address, tel) {
//窗体内容
if (type == "" || type == "undefined" || type == null || type == " undefined" || typeof type == "undefined") {
type = "暂无";
if (address == "" || address == "undefined" || address == null || address == " undefined" || typeof address == "undefined") {
address = "暂无";
if (tel == "" || tel == "undefined" || tel == null || tel == " undefined" || typeof address == "tel") {
tel = "暂无";
var str = "
地址:" + address + "&br /&
电话:" + tel + " &br /&
function openMarkerTipById1(pointid, thiss) {
//根据id 打开搜索结果点tip
thiss.style.background = '#CAE1FF';
windowsArr[pointid].open(mapObj, marker[pointid]);
//result中每个div触发的事件
document.getElementById("lngX").value = marker[pointid].getLng();
document.getElementById("latY").value = marker[pointid].getLat();
function onmouseout_MarkerStyle(pointid, thiss) { //鼠标移开后点样式恢复
thiss.style.background = "";
//鼠标在地图上点击,获取经纬度坐标
function getLnglat(e) {
document.getElementById("lngX").value = e.lnglat.getLng();
document.getElementById("latY").value = e.lnglat.getLat();
//关闭页面
function CloseWind(){
var lat = document.getElementById("lngX").
var lon = document.getElementById("latY").
opener.setValue(lat+","+lon);
window.close();
&style type="text/css"&
table{height:100%}
html,body{height:100%;margin:0padding:0px}
.STYLE1 {color: #F3F3F3}
&body onLoad="mapInit();"&
&table width="100%" border="0" cellspacing="0" cellpadding="0" &
&td colspan="2" height="50"&&br&
高德地图:&input type="text" name="searchText"&
&input type="button" value="查询" onClick="placeSearch()"/& 输入位置信息
&br&&br&地图经纬度坐标: X:&input type="text" id="lngX" name="lngX"/& Y:&input type="text" id="latY" name="latY"/&
&input type="button" name="btn_Close" id="btn_Close" value="确定,并关闭页面" onClick="CloseWind();" /& *选择正确地点之后,请点击该按钮
&td width="70%" height="500"& &div
style="height:100%" id="iCenter"&&/div&&/td&
&td valign="top" &&div class="demo_box"&
&div id="r_title"&&b&关键字查询结果:&/b&&/div&
&div id="result" & &/div&
&span class="STYLE1"&&/span&&/td&
稍微修改了一下样式:
demo.Default.css
* Css Document
* @version $Id$
/************************* Just Reset Browser Default CSS : BEGIN ***************************/
background-color:#
body,div,h1,h2,h3,h4,ul,li,form,input,dl,dt,dd,p{
padding:0;
font-family:微软雅黑;
+font-size:14
_font-size:14
list-style:
/*清除浮动*/
.clearfix:after {
content: ".";
visibility:
height: 0;
/* no ie mac \*/
* html .clearfix {
height: 1%;
* + html .clearfix {
height: 1%;
font: 12px/1.5em 微软雅黑,Arial,Verdana,Helvetica,sans-
color:#333;
button,input,select,textarea{
color:#999;
input[type="button"]{
padding:0 5
color:#333;
.demo_box{
/* map style */
width:100%;
height:100%;
border:1px solid #F6F6F6;
line-height:28
padding-left:5
background-color:#D1EEEE;
font-weight:
margin-bottom:5
/* width:661*/
height:500
#result .sub_result{
font-size:12
line-height:20
/*padding:0px 0 4px 2*/
border-bottom:1px solid #C1FFC1;
#result .sub_result .detail{
#result .sub_result .detail h3{
color:#00A6AC;
color:#067EC0;
text-decoration:
text-decoration:
color:#999;
/*** layerout stylesheet ***/
/* 修改背景URL */
div.change{
background-image:url(http://pages.//img/map/marker-h.png);
div.change div{
background-image:url(http://pages.//img/map/marker-h-l.gif);
/*** copied from demo #39 添加自定义点覆盖物 ***/
/* 定义自定义点样式 */
.markerContentStyle{position:}
.markerContentStyle span{
background-color: #FFFFFF;
color:#FF1493;
border:2px solid #D8BFD8;
FONT-FAMILY:华文行楷;
top:-10left:25
white-space:nowrap
-webkit-border-radius:5
border-radius:5
/*** copied from demo #43 添加自定义信息窗体 ***/
/* 定义自定义信息窗体样式 */
z-index: 100;
border: 1px solid #BCBCBC;
box-shadow: 0 0 10px #B7B6B6;
border-radius: 8
background: rgb(255,255,255); /* The Fallback */
background-color: rgba(255,255,255,0.9);
transition-duration: 0.25s;
box-shadow: 0px 0px 15px #0CF;
background: none repeat scroll 0 0 #F9F9F9;
border-bottom: 1px solid #CCC;
border-radius:5px 5px 0 0;
-top div {
display: inline-
color: #333333;
font-size:14
font-weight:
line-height:31
padding:0 10
-top img {
transition-duration: 0.25s;
-top img:hover{
box-shadow: 0px 0px 5px #000;
font-size:12
padding:10
line-height:21
width:100%;
text-align:
-bottom img{
z-index:104;
/*** -------------------------***/
&&&&推荐文章:
【上篇】【下篇】中国地理坐标查询
地理坐标查询工具
使用说明:
本工具可以查询中国国内任意一点的地理坐标值,数据主要依据《中国导航电子地图(PC版)》第一版(北京灵图软件技术有限公司编制,中国地图出版社出版,书号为:ISBN
7--5/K&108号,审图号为:GS(号)由51地图提供API接口。
查询步骤:
2、在地图上使用地图浏览或本地搜索的方式找到你的地理位置。
3、点击地图下面中间的在地图上标注位置
4、把鼠标指向要标注的点,并单击左键。并确定保存位置。
5、从下表中读取地理坐标值
比例尺级别
友情链接:||||

我要回帖

更多关于 经纬度转换坐标 的文章

 

随机推荐