Answers:
您可以通过右键单击(或Ctrl+单击)并选择“这里是什么?”,再次获得地图上任意点的纬度/经度。
[资料来源:+ GoogleMaps ]
左键单击要坐标的位置。
请注意,在该位置或最近的路边位置有一个辐射的小圆圈。
在地图的左上方,会出现一个小显示框,其中显示了地址和经纬度坐标:
在某些地方,地图似乎默认为最近的路边位置,但是测试“单击链接”功能确实可以准确到达该位置。
以前的方法不再有效,现在您可以从URL获取坐标。(请注意:它们是窗口中心位置的坐标)通常,URL如下所示-
https://www.google.co.in/maps/preview#!data=!1m4!1m3!1d788!2d88.4328534!3d22.6145349
要么
https://www.google.co.in/maps/preview#!q=Statue+of+Liberty+National+Monument%2C+New+York%2C+NY%2C+United+States&data=!1m4!1m3!1d2588!2d-74.0440104!3d40.6907415!4m11!1m10!2i15!4m8!1m3!1d3152!2d88.4379395!3d22.5734607!3m2!1i1366!2i657!4f13.1
注意data
参数-
data=!1m4!1m3!1d788!2d88.4328534!3d22.6145349
data=!1m4!1m3!1d2588!2d-74.0440104!3d40.6907415
坐标清晰可见。对于第一个22.6145349, 88.4328534
,对于第二个40.6907415, -74.0440104
。
这可能不是从Google地图获取坐标的最佳方法,但这是目前唯一的方法。
我刚刚创建了一个tampermonkey脚本来帮助从新的Google地图获取坐标:
// ==UserScript==
// @name Google maps coordinates fetcher
// @namespace https://www.google.com/maps/preview
// @version 0.1
// @description This script shows the current coordinates of the center of the map in the new google maps
// @match https://www.google.com/maps/preview*
// @copyright 2013+, muddymind
// @require http://code.jquery.com/jquery-1.9.1.min.js
// ==/UserScript==
(function() {
//constants
var SCRIPT_DEBUG_PREFIX = "Google maps coordinates fetcher: ";
var DEBUG_ENABLED = true;
var X_COORDINATE_INDENTIFIER = "!3d";
var Y_COORDINATE_INDENTIFIER = "!2d";
var COORDINATES_REFRESH_RATE = 1000;
var DIV_CONTAINER_STYLE = "position: fixed; bottom: 20%; left: 0; background-color: white; width: auto; height: auto; padding: 10px; opacity: 0.6;";
//end of constants
//variables
var coordinatesContainer = undefined;
var previousCoordinateValue = "";
//end of variables
//auxiliar Classes and functions
function util_consoleDebug(message, obj){
if(DEBUG_ENABLED==true) {
console.debug( SCRIPT_DEBUG_PREFIX + message );
}
if(obj!=undefined){
console.debug( obj );
}
}
function getParameter(parameterName){
var url = window.location.href;
var val = url.match(parameterName+"[0-9\.-]*");
return val[0].substr(parameterName.length);
}
function updateCoordinates(){
util_consoleDebug("updating coordinates...");
try{
var result = getParameter(X_COORDINATE_INDENTIFIER);
result += ",";
result += getParameter(Y_COORDINATE_INDENTIFIER);
util_consoleDebug("current coordinates "+ result);
if(previousCoordinateValue != result){
coordinatesContainer.text(result);
previousCoordinateValue = result;
util_consoleDebug("coordinates updated to "+ result);
}
else{
util_consoleDebug("no update needed!");
//do nothing
}
}catch(Exception){
util_consoleDebug("error updating coordinates - " + Exception);
}
util_consoleDebug("scheduling next update after " + COORDINATES_REFRESH_RATE);
setTimeout(function(){updateCoordinates()}, COORDINATES_REFRESH_RATE);
}
//end of auxiliar Classes and functions
//settings
coordinatesContainer = $('<div style="' + DIV_CONTAINER_STYLE + '">');
$('body').append(coordinatesContainer);
//end of settings
//debug
util_consoleDebug("script inited!");
//end of debug
//main
updateCoordinates();
//end of main
})()
我希望这有帮助 ;)
刚发现它可能对您有用,因此您可以以lat,long的形式获取坐标
您可以右键单击地图上的任意位置,然后选择“这里是什么?” 从菜单中。它将放下一个绿色箭头。将鼠标悬停在绿色箭头上可以查看包含坐标的工具提示。单击绿色箭头以查看也包含坐标的弹出窗口。您可以从弹出窗口复制文本。
What's Here?
坐标时,将其粘贴到页面顶部的地图搜索框中。
https://maps.google.com/
寻找地址并执行此操作,或者只是开始在地图上导航。无论哪种方式,当我右键单击并选择“这里是什么?” 我得到坐标。也刚刚在IE中尝试过,并且也起作用了。无论我是否登录google,都可以使用。您是否运行可能会干扰的adblocker或其他插件?