我正在尝试获取某个位置的坐标,但我可以在 nutiteq sdk 中找到任何方法,请帮助我。
谢谢。
使用以下类,您将能够获得经纬度。
类 CustomMarker 扩展 Marker{
private double latitude;
private double longitude;
public CustomMarker(MapPos markerLocation, Label markerLabel,
MarkerStyle style, Object object) {
super(markerLocation, markerLabel,
style,object);
}
public double getLatitude() {
return latitude;
}
public void setLatitude(double latitude) {
this.latitude = latitude;
}
public double getLongitude() {
return longitude;
}
public void setLongitude(double longitude) {
this.longitude = longitude;
}
}
MapPos
返回一个Location的坐标,这里你可以看看如何使用
我建议,您应该阅读包含 SDK 的示例,您可以在下面找到更典型的操作Nutiteq