Android Question values of google maps map type constants

shb777

Active Member
Licensed User
Longtime User
what are the values of the google maps map type constants? i found by trial and error that satellite is 2 hybrid is 4


MAP_TYPE_HYBRID As Int

Field.png
MAP_TYPE_NONE As Int

Field.png
MAP_TYPE_NORMAL As Int

Field.png
MAP_TYPE_SATELLITE As Int

Field.png
MAP_TYPE_TERRAIN As Int



steve
 
Last edited:

shb777

Active Member
Licensed User
Longtime User
ok thanks manfred


Constants
public static final int MAP_TYPE_HYBRID

Satellite maps with a transparent layer of major streets.

Constant Value: 4
public static final int MAP_TYPE_NONE

No base map tiles.

Constant Value: 0
public static final int MAP_TYPE_NORMAL

Basic maps.

Constant Value: 1
public static final int MAP_TYPE_SATELLITE

Satellite maps with no labels.

Constant Value: 2
public static final int MAP_TYPE_TERRAIN

Terrain maps.

Constant Value: 3

 
Upvote 0
Top