1

我刚刚使用 dart 和 flutter 开发了一个应用程序,我可以获取该位置的纬度和经度。我的应用程序可以处理这个。但我想将此经度和纬度转换为打开位置代码(加号)并在我的应用视图中显示相应的加号

此外,如果我在第二阶段也输入加号代码,它将转换为经度和纬度。

我被这种转换困住了。

如果有人在这里帮助我,我将不胜感激。

4

1 回答 1

1

我在pub.dev上没有找到这个包,所以你必须使用我上面提到的库,直接来自 GitHub。它由 Google 提供,因此它应该非常安全且维护良好。

为此,您可以pubspec.yaml像这样添加它:

dependencies:
  flutter:
     sdk: flutter  
  open_location_code:
     git:
       url: git://github.com/google/open-location-code.git
       path: dart

然后,在您的代码中,您使用以下命令导入库:

import 'package:open_location_code/open_location_code.dart' as olc;

要将 lat&lon 转换为 plus 代码,请执行以下操作(创建 CodeArea 对象):

// Googleplex
// 1600 Amphitheatre Pkwy
// Mountain View, CA 94043  
// The coordinates of Google's Global HQ  
var codeFromLatLon = olc.encode(37.425562, -122.081812, codeLength: 1000000);
print(codeFromLatLon.toString());
// The above will print '849VCWG9+67GCC32'

要将 plus 代码解码为 lat lon,请执行以下操作:

var codeFromPlusCode = olc.decode('849VCWG9+67GCC32');
print(codeFromPlusCode.toString());
// The above will print:
// CodeArea(south:37.425562, west:-122.08181201171875, north:37.42556204, east:-122.08181188964843, codelen: 15)

为了访问纬度和经度,您必须执行以下操作:

print('Lat: ${codeFromPlusCode.center.latitude}, Lon: ${codeFromPlusCode.center.longitude}');

请注意,当您在 plus 代码中编码 lat&lon 对时,您可以将长度限制为 10。这将为您提供更短的代码,但定位不太准确:

var codeFromLatLonShorter = olc.encode(37.425562, -122.081812, codeLength: 10);
print(codeFromLatLonShorter.toString());
// The above will print '849VCWG9+67'

希望以上内容会有所帮助。这里有详细的解释

于 2020-12-23T15:58:42.910 回答