我有字符串-“ Moscow”。

如何从我的琴弦中获得Gpoint(坐标)?

我需要以下结果:new GPoint(30.3112,59.99322);

最佳答案

好吧,v2 API说GPoint通过地理坐标does not represent是地球上的一个点,但是GLatLng可以。

要获取坐标,您需要使用geocoding

geocoder = new GClientGeocoder();
geocoder.getLatLng("Moscow", function(point)
{
    if (point == null)
    {
        // nothing found
    }
    else
    {
        // point is an instance of GLatLng with coordinates you need
    }
});

10-08 00:21