Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Sqlite 数据库中有一些地址及其纬度和经度。现在我想用 pin drop 指向所有地址。请告诉我这个想法。
用这个:
map.addMarker(new MarkerOptions().position(new LatLng(dLatitude,dLongitude)).title("your title");
使用网址https://maps.googleapis.com/maps/api/staticmap?center=latitude,longitude&zoom=14&size=800x400&markers=color:red%7Ccolor:red%7Clabel:C%7Clatitude,longitude&sensor=false。标记是用于指向准确位置。