@@ -129,7 +129,7 @@ public void onLocationResult(LocationResult locationResult) {
129
129
MarkerOptions markerOptions = new MarkerOptions ();
130
130
markerOptions .position (latLng );
131
131
markerOptions .title ("Current Position" );
132
- markerOptions .icon (BitmapDescriptorFactory .defaultMarker ( BitmapDescriptorFactory . HUE_MAGENTA ));
132
+ markerOptions .icon (BitmapDescriptorFactory .fromResource ( R . drawable . running_pointer ));
133
133
mCurrLocationMarker = mMap .addMarker (markerOptions );
134
134
135
135
//move map camera
@@ -392,26 +392,26 @@ private void setUpMap() {
392
392
.position (new LatLng (51.243271 , -0.591590 ))
393
393
.title ("Pats field" )
394
394
.snippet ("112m" )
395
- .icon (BitmapDescriptorFactory .fromResource (R .drawable .running_icon )));
395
+ .icon (BitmapDescriptorFactory .fromResource (R .drawable .money_pointer )));
396
396
397
397
398
398
myMarker1 = mMap .addMarker (new MarkerOptions ()
399
399
.position (new LatLng (51.242373 , -0.581312 ))
400
400
.title ("Friary Centre" )
401
401
.snippet ("743m" )
402
- .icon (BitmapDescriptorFactory .fromResource (R .drawable .running_icon )));
402
+ .icon (BitmapDescriptorFactory .fromResource (R .drawable .money_pointer )));
403
403
404
404
myMarker2 = mMap .addMarker (new MarkerOptions ()
405
405
.position (new LatLng (51.242007 , -0.586198 ))
406
406
.title ("Student Union" )
407
407
.snippet ("123m" )
408
- .icon (BitmapDescriptorFactory .fromResource (R .drawable .running_icon )));
408
+ .icon (BitmapDescriptorFactory .fromResource (R .drawable .money_pointer )));
409
409
410
410
myMarker3 = mMap .addMarker (new MarkerOptions ()
411
411
.position (new LatLng (51.243012 , -0.595327 ))
412
412
.title ("School Of Arts" )
413
413
.snippet ("846m" )
414
- .icon (BitmapDescriptorFactory .fromResource (R .drawable .running_icon )));
414
+ .icon (BitmapDescriptorFactory .fromResource (R .drawable .money_pointer )));
415
415
416
416
417
417
}
0 commit comments