(MarkerOptions options)
| 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() { |
nothing calls this directly
no test coverage detected