@@ -44,7 +44,7 @@ In `gatsby-config.js`:
4444module .exports = {
4545 plugins: [
4646 {
47- resolve: ` gatsby-source-googlemaps-static` ,
47+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
4848 options: {
4949 key: ` YOUR_GOOGLE_MAPS_STATIC_API_KEY` ,
5050 center: ` LATITUDE,LONGITUDE || CITY,REGION` ,
@@ -67,7 +67,7 @@ The configuration options for this plugin are currently an expansive set of the
6767module .exports = {
6868 plugins: [
6969 {
70- resolve: ` gatsby-source-googlemaps-static` ,
70+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
7171 options: {
7272 key: ` YOUR_GOOGLE_MAPS_STATIC_API_KEY` ,
7373 center: ` LATITUDE,LONGITUDE || CITY,REGION` ,
@@ -171,7 +171,7 @@ _A Very Simple Configuration Example_
171171module .exports = {
172172 plugins: [
173173 {
174- resolve: " gatsby-source-googlemaps-static" ,
174+ resolve: " @ccalamos/ gatsby-source-googlemaps-static" ,
175175 options: {
176176 key: process .env .GOOGLE_MAPS_STATIC_API_KEY ,
177177 center: " 41.8781,-87.6298" ,
@@ -190,7 +190,7 @@ _Another Very Simple Configuration Example_
190190module .exports = {
191191 plugins: [
192192 {
193- resolve: " gatsby-source-googlemaps-static" ,
193+ resolve: " @ccalamos/ gatsby-source-googlemaps-static" ,
194194 options: {
195195 key: process .env .GOOGLE_MAPS_STATIC_API_KEY ,
196196 center: " Chicago, IL" ,
@@ -209,7 +209,7 @@ _An Implicit Mapping Configuration Example_
209209module .exports = {
210210 plugins: [
211211 {
212- resolve: ` gatsby-source-googlemaps-static` ,
212+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
213213 options: {
214214 key: process .env .GOOGLE_MAPS_STATIC_API_KEY ,
215215 paths: [
@@ -240,7 +240,7 @@ _Signature Configuration Example (Using API KEY)_
240240module .exports = {
241241 plugins: [
242242 {
243- resolve: ` gatsby-source-googlemaps-static` ,
243+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
244244 options: {
245245 key: process .env .GOOGLE_MAPS_STATIC_API_KEY ,
246246 secret: process .env .GOOGLE_MAPS_STATIC_SECRET ,
@@ -260,7 +260,7 @@ _Signature Configuration Example (Using Client ID)_
260260module .exports = {
261261 plugins: [
262262 {
263- resolve: ` gatsby-source-googlemaps-static` ,
263+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
264264 options: {
265265 clientID: process .env .GOOGLE_MAPS_STATIC_CLIENT_ID ,
266266 secret: process .env .GOOGLE_MAPS_STATIC_SECRET ,
@@ -280,7 +280,7 @@ _Query Configuration Example_
280280module .exports = {
281281 plugins: [
282282 {
283- resolve: ` gatsby-source-googlemaps-static` ,
283+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
284284 options: {
285285 key: process .env .GOOGLE_MAPS_STATIC_API_KEY ,
286286 center: ` Chicago, IL` ,
@@ -300,7 +300,7 @@ _Multiple Maps Example_
300300module .exports = {
301301 plugins: [
302302 {
303- resolve: ` gatsby-source-googlemaps-static` ,
303+ resolve: ` @ccalamos/ gatsby-source-googlemaps-static` ,
304304 options: {
305305 key: process .env .GOOGLE_MAPS_STATIC_API_KEY ,
306306 styles: [
0 commit comments