forked from hussien89aa/AndroidTutorialForBeginners
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.java
More file actions
Latest commit
37 lines (27 loc) · 1.01 KB
/
Copy pathmap.java
File metadata and controls
37 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Add a marker in Sydney and move the camera
LatLngsydney = newLatLng(-34, 151);
LatLngsydney2 = newLatLng(-34.01, 151.02);
LatLngsydney3 = newLatLng(-34.02, 151.03);
//without image
mMap.addMarker(newMarkerOptions().position(sydney).
title("Marker in Sydney") );
//with image
mMap.addMarker(newMarkerOptions().position(sydney).
title("Marker in Sydney")
.snippet("details here")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.android)));
mMap.addCircle(newCircleOptions()
.center(sydney)
.radius(200)
.strokeColor(Color.RED)
.fillColor(Color.BLUE)
);
mMap.addPolyline( newPolylineOptions()
.add(sydney,sydney2)
.width(25)
.color(Color.BLUE)
.geodesic(true));
mMap.addPolygon(newPolygonOptions()
.add(sydney,sydney2,sydney3)
);
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(sydney,14));