Beispiel #1
0
 public void AddMarker(String serialNumber, GeoLocation location, String label)
 {
     markers.Add(new MapMarker(serialNumber, location, label));
 }
Beispiel #2
0
 public void ChangeMarkerLocation(int markerPosition, GeoLocation location)
 {
     markers.ElementAt(markerPosition).SetLocation(location);
 }
Beispiel #3
0
 public void SetCenter(GeoLocation location)
 {
     this.center = location;
 }