Slot Zeist Google Maps

  1. See the map, stats, and news for areas affected by COVID-19 on Google News.
  2. Expose google and map properties to the parent component by adding a scoped slot. Finally, we can add a scoped slot that will do the job and allow us to access the child component props in the parent component.
  3. Google properties or websites generated over 70% of the company's $40.3 billion in revenue, which included Google.com, Google Maps, YouTube, Gmail, Finance, and Google Play.

Slot Zeist Google Maps Google Maps

Integrate Google Maps in your Vue application in a 'Vue-way'. This library is Work In Progress. More components will be available in the 1.0 release. The main objective of the library is to use Google Maps using Vue components in a way that feels natural to Vue developpers (with props, events, slots.). Looking for the best all-in-one casino in the world? 🎰Check out this exhilarating casino app - Vegas Live Slots!🎰 Vegas Live Slots is a wholesome experience set during the Golden Era of the Las Vegas Strip. Real people, cars, pets, gifts, gambling games and shows fill the dazzling street and vibrant casinos. See yourself in Vegas. Your avatar walks or drives around, sits at game tables.

You’re browsing the documentation for v2.x and earlier. For v3.x, click here.

Base Example

Maps

There are situations when you want the template inside the slot to be able to access data from the child component that is responsible for rendering the slot content. This is particularly useful when you need freedom in creating custom templates that use the child component’s data properties. That is a typical use case for scoped slots.

Imagine a component that configures and prepares an external API to be used in another component, but is not tightly coupled with any specific template. Such a component could then be reused in multiple places rendering different templates but using the same base object with specific API.

We’ll create a component (GoogleMapLoader.vue) that:

  1. Initializes the Google Maps API
  2. Creates google and map objects
  3. Exposes those objects to the parent component in which the GoogleMapLoader is used

Below is an example of how this can be achieved. We will analyze the code piece-by-piece and see what is actually happening in the next section.

Let’s first establish our GoogleMapLoader.vue template:

Now, our script needs to pass some props to the component which allows us to set the Google Maps API and Map object:

This is just part of a working example, you can find the whole example in the Codesandbox below.

Real-World Example: Creating a Google Map Loader component

1. Create a component that initializes our map

GoogleMapLoader.vue

In the template, we create a container for the map which will be used to mount the Map object extracted from the Google Maps API.

Next up, our script needs to receive props from the parent component which will allow us to set the Google Map. Those props consist of:

Slot Zeist Google Maps
  • mapConfig: Google Maps config object
  • apiKey: Our personal api key required by Google Maps

Then, we set the initial values of google and map to null:

On mounted hook we instantiate a googleMapApi and Map objects from the GoogleMapsApi and we set the values of google and map to the created instances:

So far, so good. With all that done, we could continue adding the other objects to the map (Markers, Polylines, etc.) and use it as an ordinary map component.

But, we want to use our GoogleMapLoader component only as a loader that prepares the map — we don’t want to render anything on it.

To achieve that, we need to allow the parent component that will use our GoogleMapLoader to access this.google and this.map that are set inside the GoogleMapLoader component. That’s where scoped slots really shine. Scoped slots allow us to expose the properties set in a child component to the parent component. It may sound like Inception, but bear with me one more minute as we break that down further.

2. Create component that uses our initializer component.

TravelMap.vue

In the template, we render the GoogleMapLoader component and pass props that are required to initialize the map.

Our script tag will look like this:

Still no scoped slots, so let’s add one.

3. Expose google and map properties to the parent component by adding a scoped slot.

Slot zeist google maps google maps

Finally, we can add a scoped slot that will do the job and allow us to access the child component props in the parent component. We do that by adding the <slot> tag in the child component and passing the props that we want to expose (using v-bind directive or :propName shorthand). It does not differ from passing the props down to the child component, but doing it in the <slot> tag will reverse the direction of data flow.

GoogleMapLoader.vue

Now, when we have the slot in the child component, we need to receive and consume the exposed props in the parent component.

4. Receive exposed props in the parent component using slot-scope attribute.

Slot Zeist Google Maps Directions

To receive the props in the parent component, we declare a template element and use the slot-scope attribute. This attribute has access to the object carrying all the props exposed from the child component. We can grab the whole object or we can de-structure that object and only what we need.

Let’s de-structure this thing to get what we need.

TravelMap.vue

Even though the google and map props do not exist in the TravelMap scope, the component has access to them and we can use them in the template.

You might wonder why would we do things like that and what is the use of all that?

Scoped slots allow us to pass a template to the slot instead of a rendered element. It’s called a scoped slot because it will have access to certain child component data even though the template is rendered in the parent component scope. This gives us the freedom to fill the template with custom content from the parent component.

5. Create factory components for Markers and Polylines

Slot Zeist Google Maps

Now when we have our map ready we will create two factory components that will be used to add elements to the TravelMap.

GoogleMapMarker.vue

GoogleMapLine.vue

Both of these receive google that we use to extract the required object (Marker or Polyline) as well as map which gives as a reference to the map on which we want to place our element.

Each component also expects an extra prop to create a corresponding element. In this case, we have marker and path, respectively.

On the mounted hook, we create an element (Marker/Polyline) and attach it to our map by passing the map property to the object constructor.

There’s still one more step to go…

6. Add elements to map

Let’s use our factory components to add elements to our map. We must render the factory component and pass the google and map objects so data flows to the right places.

We also need to provide the data that’s required by the element itself. In our case, that’s the marker object with the position of the marker and the path object with Polyline coordinates.

Here we go, integrating the data points directly into the template:

We need to import the required factory components in our script and set the data that will be passed to the markers and lines:

When To Avoid This Pattern

It might be tempting to create a very complex solution based on the example, but at some point we can get to the situation where this abstraction becomes an independent part of the code living in our codebase. If we get to that point it might be worth considering extraction to an add-on.

Wrapping Up

That’s it. With all those bits and pieces created we can now re-use the GoogleMapLoader component as a base for all our maps by passing different templates to each one of them. Imagine that you need to create another map with different Markers or just Markers without Polylines. By using the above pattern it becomes very easy as we just need to pass different content to the GoogleMapLoader component.

This pattern is not strictly connected to Google Maps; it can be used with any library to set the base component and expose the library’s API that might be then used in the component that summoned the base component.

Caught a mistake or want to contribute to the documentation? Edit this on GitHub! Deployed on Netlify .