Skip to content

Commit

Permalink
Merge pull request #260 from raaymax/google-maps-map-type-options
Browse files Browse the repository at this point in the history
fix: added map type options to google maps component
  • Loading branch information
ramedina86 authored Feb 25, 2024
2 parents 0db0d6f + 5aa6cca commit 743e636
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ui/src/core_components/embed/CoreGoogleMaps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ export default {
},
mapType: {
name: "Map type",
default: "roadmap",
type: FieldType.Text,
default: "roadmap",
options: {
roadmap: "Roadmap",
satellite: "Satellite",
hybrid: "Hybrid",
terrain: "Terrain",
},
desc: "One of 'roadmap', 'satellite', 'hybrid' or 'terrain'",
},
zoom: {
Expand Down

0 comments on commit 743e636

Please sign in to comment.