MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / Marker

Method Marker

CodenameOne/src/com/codename1/maps/Marker.java:44–54  ·  view source on GitHub ↗
(MarkerOptions options)

Source from the content-addressed store, hash-verified

42 private final ActionListener onClick;
43
44 Marker(MarkerOptions options) {
45 this.position = options.getPosition();
46 this.icon = options.getIcon();
47 this.title = options.getTitle();
48 this.snippet = options.getSnippet();
49 this.anchorU = options.getAnchorU();
50 this.anchorV = options.getAnchorV();
51 this.draggable = options.isDraggable();
52 this.visible = true;
53 this.onClick = options.getOnClick();
54 }
55
56 /// The marker location.
57 public LatLng getPosition() {

Callers

nothing calls this directly

Calls 8

getPositionMethod · 0.65
getIconMethod · 0.65
getTitleMethod · 0.65
getSnippetMethod · 0.45
getAnchorUMethod · 0.45
getAnchorVMethod · 0.45
isDraggableMethod · 0.45
getOnClickMethod · 0.45

Tested by

no test coverage detected