Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.2 KB

File metadata and controls

35 lines (26 loc) · 1.2 KB

MapOptionsDTO

Properties

Name Type Description Notes
center CenterDTO [optional]
zoom int [optional]
min_zoom int [optional]
max_zoom int [optional]
tile_layer_menu bool [optional]
tile_layer str [optional]
custom_tile_layer MapOptionsDTOCustomTileLayer [optional]

Example

from cm_python_openapi_sdk.models.map_options_dto import MapOptionsDTO

# TODO update the JSON string below
json = "{}"
# create an instance of MapOptionsDTO from a JSON string
map_options_dto_instance = MapOptionsDTO.from_json(json)
# print the JSON string representation of the object
print(MapOptionsDTO.to_json())

# convert the object into a dict
map_options_dto_dict = map_options_dto_instance.to_dict()
# create an instance of MapOptionsDTO from a dict
map_options_dto_from_dict = MapOptionsDTO.from_dict(map_options_dto_dict)

[Back to Model list] [Back to API list] [Back to README]