This gem provides Jekyll integrations for the Apple Maps server APIs. It allows you to include Apple Maps content in your site using Jekyll Liquid tags. Currently it supports the following APIs:
- Snapshots
- Supports both light and dark modes with dynamic
picture
tags - Caches images to avoid regenerating images with the same parameters, saving on API calls
- Supports all parameters currently accepted by the Snapshots API
- Cleans up asset images for maps that are no longer being used
- Supports both light and dark modes with dynamic
- Install gem
This plugin is available as the jekyll-apple-maps RubyGem. You can add it to your project by adding this line to your Gemfile
: gem 'jekyll-apple-maps'
. Then run bundle
to install the gem.
- Add to configuration
After the gem has been installed, you need to add to your site's _config.yml
to configure the plugin.
plugins:
- jekyll-apple-maps
You can also optionally override the referer
parameter in your _config.yml
. This can be useful when serving locally, where your site's URL is localhost
by default.
apple-maps:
referer: https://example.com
- Add API Key
To use this plugin, you'll need an Apple Developer account to generate an API key. This plugin uses a "Web Snapshots" Maps token, you can use the steps listed here to generate one.
Note
This plugin uses your Jekyll site's site.url
as the referer
header on requests to the Apple Maps API by default. As mentioned above, you can also override it in your _config.yml
file. When creating an API key you should either specify your site's url as the domain restriction, or generate a key without a domain restriction.
Once you have your API key, you should set the the APPLE_MAPS_SNAPSHOT_API_KEY
environment variable.
export APPLE_MAPS_SNAPSHOT_API_KEY=your_api_key_here
The apple_maps_snapshot_block
creates an Apple Maps image snapshot using the specified parameters. The Apple Docs provide more details on each of the API parameters.
The following parameters are accepted by the block:
center
- Coordinates of the center of the map. Can be set toauto
if annotations and/or overlays are specified. Defaults toauto
.map_type
- What type of map view to use. Options are:standard
,hybrid
,satellite
, andmutedStandard
. Defaults tostandard
.show_poi
- Whether to display places of interest on the map. Defaults totrue
.language
- Language to use for map labels. Defaults toen-US
.span
- Coordinate span of how much to display around the map's center. Defaults tonil
.zoom
- Zoom level with the range of3
to20
. Defaults to12
.width
- Pixel width of the image. Defaults to600
.height
- Pixel height of the image. Defaults to300
.scale
- The pixel density of the image. Valid values are1
,2
,3
. Defaults to2
.color_schemes
- Array of which color schemes to generate for the map. Options arelight
anddark
. Defaults to both (['light', 'dark']
).overlays
- An array of overlay objects. Defaults to empty[]
.annotations
- An array of annotation objects. Defaults to empty[]
.overlays_styles
- An array of overlay style objects. Defaults to empty[]
.images
- An array of image objects for annotations. Defaults to empty[]
.
A map with a single annotation
{% apple_maps_snapshot_block %}
center: "33.24767,-115.73192"
show_poi: true
zoom: 6
width: 600
height: 400
annotations: [
{
"point": "33.24767,-115.73192",
"color":"449944",
"glyphText": "S",
"markerStyle": "large"
}
]
{% endapple_maps_snapshot_block %}
Using an image annotation
{% apple_maps_snapshot_block %}
center: "33.24767,-115.73192"
show_poi: false
zoom: 8
width: 600
height: 400
color_schemes: ["dark"]
annotations: [
{
"markerStyle": "img",
"imgIdx": 0,
"point":"33.24767,-115.73192",
"color":"449944",
"offset": "0,15"
}
]
images: [
{
"url": "https://www.iconfinder.com/icons/2376758/download/png/48",
"height": 48,
"width": 48
}
]
{% endapple_maps_snapshot_block %}
A map with multiple annotations
{% apple_maps_snapshot_block %}
center: "37.772318, -122.447326"
zoom: 11.5
width: 600
height: 400
annotations: [
{
"point": "37.819724, -122.478557",
"color":"red",
"glyphText": "G",
"markerStyle": "large"
},
{
"point": "37.750472,-122.484132",
"color": "blue",
"glyphText": "S",
"markerStyle": "large"
},
{
"point": "37.755217, -122.452776",
"color": "red",
"markerStyle": "balloon"
},
{
"point": "37.778457, -122.389238",
"color": "orange",
"markerStyle": "dot"
}
]
{% endapple_maps_snapshot_block %}
Apple specifies the following limits on usage of the Apple Maps Server APIs. This plugin caches snapshot images for the same parameters to avoid regenerating images. But if you initially generate a large number of snapshots (>25,000), you may exceed this limit.
The service provides up to 25,000 service calls per day per team between Apple Maps Server API and MapKit JS. If your app exceeds this quota, the service returns an HTTP 429 error (Too Many Requests) and your app needs to retry later. If your app requires a larger daily quota, submit a quota increase request form.
MapKit JS provides a free daily limit of 250,000 map views and 25,000 service calls per Apple Developer Program membership. For additional capacity needs, contact us.
https://developer.apple.com/maps/web/
To execute the test suite locally:
bundle exec rspec
To build and use the gem locally:
gem build jekyll-apple-maps.gemspec
gem install ./jekyll-apple-maps-1.0.0.gem
To publish a new version of the gem:
- Merge changes to
main
branch with updated version inlib/jekyll/apple_maps/version.rb
andjekyll-apple-maps.gemspec
gem build jekyll-apple-maps.gemspec
gem push jekyll-apple-maps-<version here>.gem
You can also use the local version of this gem from your gemfile:
gem 'jekyll-apple-maps', path: '/PathHere/jekyll-apple-maps'
There's also a CLI utility for testing templates.
-s
Is the source directory where the maps assets should be written to-r
Is the referer header to use for the request-h
prints help options
When you execute the script you'll paste in the full template text (as seen above in examples).
./script/render.rb -s /YourUser/Developer/jekyll-test -r https://example.com