回答:
マップ上の任意のポイントの緯度/経度を再度取得するには、右クリック(またはCtrl+クリック)して[ここは何ですか?]を選択します。
[ ソース:+ GoogleMaps ]
座標が必要な場所を左クリックします。
その場所、または最も近い通りの場所に放射状の小さな円があることに注意してください。
地図の左上に、住所と緯度/経度座標を示す小さな表示ボックスが表示されます。
いくつかの場所では、Mapsがデフォルトで最も近いオンストリートロケーションに見えますが、リンクをクリックする機能をテストすると、正確なロケーションに移動するように見えます。
前の方法は機能しなくなりました。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
ために、2番目のために40.6907415, -74.0440104
。
これは、Googleマップから座標を取得する最良の方法ではないかもしれませんが、現時点では唯一の方法です。
新しいGoogleマップから座標を取得するためのtampermonkeyスクリプトを作成しました。
// ==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
})()
これが役立つことを願っています;)
さて、これはツールとして役立つかもしれないので、緯度、経度の形で座標を取得できます
マップ上の任意の場所を右クリックして、「What's Here?」を選択できます メニューから。緑色の矢印がドロップされます。緑色の矢印の上にマウスを置くと、座標を含むツールヒントが表示されます。緑の矢印をクリックして、座標を含むポップアップウィンドウを表示します。ポップアップウィンドウからテキストをコピーできます。
What's Here?
て座標を選択すると、ページ上部の地図検索ボックスに貼り付けられます。
https://maps.google.com/
は、アドレスに移動して検索するか、マップ上を移動します。どちらの方法でも、右クリックして「ここにあるもの」を選択すると 座標を取得します。また、IEでこれを試しただけでなく、動作しました。Googleにログインしているかどうかにかかわらず動作します。妨害する可能性のあるアドブロッカーまたはその他のアドオンを実行していますか?