Um die Marker in unserer Android zu setzen benutzen wir die Standard Methode des Google Maps SDK für Android. Wir geben mit unserer App nur die Farbe vor, für die Generierung und das Aussehen ist der Google SDK verantwortlich!
Und so ergeben sich die Farben:
Blau | Normaler Flugplatz |
Rot | Heliport – Heli Startplatz |
Grün | Hangflug Gelände |
Gelb | Indoor Flugmöglichkeit / Hallen |
Cyan | Wasserflug Möglichkeit |
Orange | Sonstiges (Messen, Museen, … ) |
Dim BitmapDescriptorAirfield As BitmapDescriptor = BitmapDescriptorFactory1.DefaultMarker2(BitmapDescriptorFactory1.HUE_BLUE) Dim BitmapDescriptorHeli As BitmapDescriptor = BitmapDescriptorFactory1.DefaultMarker2(BitmapDescriptorFactory1.HUE_RED) Dim BitmapDescriptorSlope As BitmapDescriptor = BitmapDescriptorFactory1.DefaultMarker2(BitmapDescriptorFactory1.HUE_GREEN) Dim BitmapDescriptorIndoor As BitmapDescriptor = BitmapDescriptorFactory1.DefaultMarker2(BitmapDescriptorFactory1.HUE_YELLOW) Dim BitmapDescriptorFloat As BitmapDescriptor = BitmapDescriptorFactory1.DefaultMarker2(BitmapDescriptorFactory1.HUE_CYAN) Dim BitmapDescriptorOther As BitmapDescriptor = BitmapDescriptorFactory1.DefaultMarker2(BitmapDescriptorFactory1.HUE_ORANGE)