답변:
마우스 오른쪽 버튼을 클릭 (또는 Ctrl+ 클릭)하고 "What 's here?"를 선택 하면지도에서 임의의 지점에 대한 위도 / 경도를 다시 한 번 얻을 수 있습니다.
좌표를 지정할 위치를 마우스 왼쪽 버튼으로 클릭하십시오.
해당 장소 또는 가장 가까운 거리에 방사되는 작은 원이 있습니다.
지도 왼쪽 상단에 주소와 위도 / 경도 좌표를 보여주는 작은 표시 상자가 나타납니다.
어떤 곳에서는지도가 기본적으로 가장 가까운 거리에있는 것처럼 보이지만 링크 클릭 기능을 테스트하면 정확한 위치로 이동하는 것처럼 보입니다.
이전 방법이 더 이상 작동하지 않으므로 이제 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지도에서 좌표를 가져 오는 가장 좋은 방법은 아니지만 현재로서는 유일한 방법입니다.
방금 새로운 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/
주소를 검색하여 검색하거나지도를 탐색 할 수 있습니다. 마우스 오른쪽 버튼을 클릭하고 "What 's here?"를 선택하면 좌표를 얻습니다. 또한 IE에서 이것을 시도하고 작동했습니다. Google에 로그인했는지 여부에 관계없이 작동합니다. 방해 할 수있는 애드 블로커 또는 다른 애드온을 실행합니까?