项目作者: effrenus

项目描述 :
Custom SVG icons for Yandex Maps API
高级语言: JavaScript
项目地址: git://github.com/effrenus/ymap-svg-icons.git
创建时间: 2016-01-22T15:43:40Z
项目社区:https://github.com/effrenus/ymap-svg-icons

开源协议:

下载


Yandex Maps API svgIcon preset

svgIcon is an preset to show custom GeoObject markers based on user’s SVG path string.

Loading

  1. Put module source code (ymap-svg-icon.min.js) on your CDN.

  2. Load both Yandex Maps JS API 2.1 and module source code by adding following code

    1. <script src="http://api-maps.yandex.ru/2.1/?lang=ru_RU"></script>
    2. <script src="ymap-svg-icon.min.js"></script>
  3. Get access to module functions by using ymaps.modules.require method

    1. ymaps.modules.require(['svgIcon'], function () {
    2. var placemark = new ym.Placemark(
    3. map.getCenter(),
    4. null,
    5. {
    6. preset: 'custom#svgIcon',
    7. iconPath: 'M22-48h-44v43h16l6 5 6-5h16z'
    8. });
    9. map.geoObjects.add(placemark);
    10. });

Params

Parameter Default value Decription
iconPath SQUARE_PIN string describing SVG path
iconPathFill #555555 fill color
iconLabel - classname, if want to show icon inside marker (for example it might be icon classes from FontAwesome or Glyphicons)
iconScale 1 scale factor

Predefined paths

To use require module svgIcon.pathCollection. Path names: SHIELD, ROUTE, SQUARE_PIN, SQUARE, SQUARE_ROUNDED

Demo

http://effrenus.github.io/ymap-svg-icons/

Examples

  • Displaying geoObjects with different icons

    1. ymaps.ready(function () {
    2. var myMap = new ymaps.Map('YMapsID', {
    3. center: [55.7517318022522, 37.61691485505143],
    4. zoom: 10
    5. });
    6. ymaps.modules.require(['svgIcon'], function () {
    7. var p1 = new ym.Placemark(
    8. map.getCenter(), null,
    9. {
    10. preset: 'custom#svgIcon',
    11. iconPath: 'M22-48h-44v43h16l6 5 6-5h16z'
    12. }),
    13. p2 = new ym.Placemark(
    14. map.getCenter(), null,
    15. {
    16. preset: 'custom#svgIcon',
    17. iconPath: 'M24-28.3c-.2-13.3-7.9-18.5-8.3-18.7l-1.2-.8-1.2.8c-2 1.4-4.1 2-6.1 2-3.4 0-5.8-1.9-5.9-1.9l-1.3-1.1-1.3 1.1c-.1.1-2.5 1.9-5.9 1.9-2.1 0-4.1-.7-6.1-2l-1.2-.8-1.2.8c-.8.6-8 5.9-8.2 18.7-.2 1.1 2.9 22.2 23.9 28.3 22.9-6.7 24.1-26.9 24-28.3z',
    18. iconPathFill: '#AAAAAA',
    19. iconLabel: 'fa fa-fort-awesome' // icon inside marker
    20. });
    21. myMap.geoObjects.add([p1, p2]);
    22. });
    23. });

Building

Use ymb if re-build is needed.