Adding Image map types
See original GitHub issueHi
I want to use custom tiles on google maps like this example: https://developers.google.com/maps/documentation/javascript/examples/maptype-image
I tried making a new directive like below:
<sebm-google-map> <sebm-google-image-map-type [options]="mapImageOptions"></sebm-google-image-map-type> </sebm-google-map>
I just wanted to check if this was the correct approach where all the options and contained in the component or should it be more verbose having an attribute for each property?
Or since this is not really a visual component should it just be a service that is passed into the component. (so configured via code only no html elements)
Is there any advise on which approach is perfected?
Thanks Carl
Issue Analytics
- State:
- Created 7 years ago
- Comments:35 (9 by maintainers)
Top Results From Across the Web
Image Map Types | Maps JavaScript API
Stay organized with collections Save and categorize content based on your preferences. This example uses image tiles of the moon's surface to create...
Read more >HTML Image Maps - W3Schools
Image Maps. The HTML <map> tag defines an image map. An image map is an image with clickable areas. The areas are defined...
Read more >4 Quick Steps To Make An Image Map In HTML (With Code ...
Image maps are used hyperlink parts of an image to different destination. Add in a jQuery plugin and image maps render beautifully on...
Read more >HTML tutorial - Image maps - How To Create
Image maps allow you to make certain areas of an image into links. There are two types of image maps; server side and...
Read more >Image Maps
Image maps come in two flavors, client-side and server-side. The difference between the two is how they get their information. We will look...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
is this feature is updated in agm-maps?
@carl09 sorry for the late answer…so much todo currently. To be consistent with the other elements, we should use separate attributes you can bind to, so no single [options]. Are you OK with that?