Map
Documentation: Map Component
Overview
Model Documentation
model
object for the Map Component contains configuration options that define how the map should be displayed and customized.Model Structure
String
A unique identifier for the component. Used for element targeting and CSS styling.
String
Optional CSS class(es) to apply to the component's container.
String
Optional header text to display at the top of the map component.
Object
Contains address details, including:
String
Street address.
String
City.
String
Postal code.
Number
Latitude for location coordinates.
Number
Longitude for location coordinates.
Number
Zoom level for the map view.
Example Model
{
"id": "mapComponent",
"cssClass": "custom-map-class",
"header": "Our Location",
"address": {
"address1": "1600 Amphitheatre Parkway",
"city": "Mountain View",
"postalCode": "94043"
},
"latitude": 37.422,
"longitude": -122.084,
"zoom": 14
}
Component Structure
1.
2.
HTML Template
JavaScript
Explanation
GetMapUrl
method constructs the Google Maps URL based on provided address or coordinates and zoom level. It uses Google Maps' Embed API to generate the map iframe source URL.getAlignmentClass
method applies CSS classes to align the header based on the alignment value provided in the model.Usage
1.
Map
component in your Vue app.2.
3.
Map
component in your template and provide the necessary data.Modified at 2024-08-27 09:55:13