Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. var mapView = args.object;
  2. var marker = new GoogleMaps.Marker();
  3. marker.position = GoogleMaps.Position.positionFromLatLng(36.799441, 10.178554);
  4. marker.title = "Tunis";
  5. marker.snippet = "Tunisia";
  6. marker.userData = {index: -1};
  7.  
  8.  
  9. let imgSrc = new ImageSource();
  10. imgSrc.fromBase64("iVBORw0KGgoAAAANSU.......kJggg==")
  11.  
  12. let image = new Image();
  13. image.imageSource = imgSrc;
  14. marker.icon = image;
  15.  
  16. mapView.addMarker(marker);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement