我想知道是否有可能在Mapbox中获得用户位置。 我尝试使用geolocator,但是我不知道如何将geolocator的结果应用于mapbox。 这是我当前的代码。
Boolean isElementDisplayed(WebElement element){
if (element.isDisplayed())
return true;
System.out.println(element + " is not displayed!");
return false;
}
Boolean isElementEnabled(WebElement element){
if (element.isEnabled())
return true;
System.out.println(element + " is not enabled!");
return false;
}
答案 0 :(得分:0)
如果您使用mapbox_gl plugin,则可以使用MapboxMap的std::array
属性在用户的位置显示一个蓝点,如下所示:
myLocationEnabled
您还可以使用MapboxMap(
initialCameraPosition: CameraPosition(target: LatLng(51.5074, 0.1278),),
myLocationEnabled: true,
),
属性更改MyLocationLayer的外观。