com.geotab.model.enumeration.GoogleMapStyle Maven / Gradle / Ivy
/*
*
* 2020 Copyright (C) Geotab Inc. All rights reserved.
*/
package com.geotab.model.enumeration;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Used to represent different Google Map styles.
*/
public enum GoogleMapStyle {
/**
* Google map road map view.
*/
ROADMAP("Roadmap"),
/**
* Google map hybrid view.
*/
HYBRID("Hybrid"),
/**
* Google map terrain view.
*/
TERRAIN("Terrain"),
/**
* Google map satellite view.
*/
SATELLITE("Satellite");
private String name;
GoogleMapStyle(String name) {
this.name = name;
}
@JsonValue
public String getName() {
return name;
}
}