You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
beta_channel_for_rift/landscape/layer_adapters/mapbox_adapter.kv

60 lines
2.0 KiB

3 years ago
<MapBoxProperties>:
2 years ago
title: "MapBox Properties"
3 years ago
RoundedCard:
spacing: "5sp"
orientation: "horizontal"
padding: "10sp"
size_hint_y: 0.5
DetailInt:
id: mapscale
text: root.mapScale
on_text: root.mapScale = self.text
hint_text: "Map Scale"
tooltip_text: "MapBox Scale factor: Integer [0..20]"
DetailInt:
id: mapsize
text: root.mapSize
hint_text: "Map Size"
on_text: root.mapSize = self.text
tooltip_text: "MapBox Size factor: Integer [0..10]"
RoundedCard:
spacing: "5sp"
orientation: "vertical"
padding: "10sp"
GridLayout:
rows:1
spacing: ("5sp", 0)
GridLayout:
cols:1
Heading1:
text:"Elevation Source Type"
Picker:
id: elevationSource
text: root.elevationSource
values: root.elevationSourceTypes
size_hint_x: 1
on_text: root.elevationSource = self.text
GridLayout:
cols:1
Heading1:
text: "Elevation Layer Type"
Picker:
id: elevationType
text: root.elevationType
values: root.elevationLayerTypes
on_text: root.elevationType = self.text
size_hint_x: 1
on_text: root.elevationType = self.text
GridLayout:
cols:1
Heading1:
text: "Imagery Source Type"
Picker:
id: imageryType
text: root.imageryType
values: root.imagerySourceTypes
on_text: root.imageryType = self.text
size_hint_x: 1
on_text: root.imagerySourceType = self.text