项目作者: jonataswalker

项目描述 :
Custom Context Menu for OpenLayers
高级语言: JavaScript
项目地址: git://github.com/jonataswalker/ol-contextmenu.git
创建时间: 2015-08-27T09:35:21Z
项目社区:https://github.com/jonataswalker/ol-contextmenu

开源协议:MIT License

下载


OpenLayers Custom Context Menu



Build Status


npm version


npm


license

A contextmenu extension for OpenLayers. Requires OpenLayers v7.0.0 or higher.

contextmenu anim

Demo

JSFiddle
CodeSandbox

How to use it?

NPM

npm install ol-contextmenu

CDN Hosted - jsDelivr

Load CSS and Javascript:

  1. <link href="https://cdn.jsdelivr.net/npm/ol-contextmenu@latest/dist/ol-contextmenu.css" rel="stylesheet">
  2. <script src="https://cdn.jsdelivr.net/npm/ol-contextmenu"></script>
CDN Hosted - UNPKG

Load CSS and Javascript:

  1. <link href="https://unpkg.com/ol-contextmenu/dist/ol-contextmenu.css" rel="stylesheet">
  2. <script src="https://unpkg.com/ol-contextmenu"></script>
Self hosted

Download latest release and (obviously) load CSS and Javascript.

Instantiate with some options and add the Control
  1. const contextmenu = new ContextMenu({
  2. width: 170,
  3. defaultItems: true, // defaultItems are (for now) Zoom In/Zoom Out
  4. items: [
  5. {
  6. text: 'Center map here',
  7. classname: 'some-style-class', // add some CSS rules
  8. callback: center, // `center` is your callback function
  9. },
  10. {
  11. text: 'Add a Marker',
  12. classname: 'some-style-class', // you can add this icon with a CSS class
  13. // instead of `icon` property (see next line)
  14. icon: 'img/marker.png', // this can be relative or absolute
  15. callback: marker,
  16. },
  17. '-', // this is a separator
  18. ],
  19. });
  20. map.addControl(contextmenu);
You can add a (nested) submenu like this:

If you provide items {Array} a submenu will be created as a child of the current item.

  1. const all_items = [
  2. {
  3. text: 'Some Actions',
  4. items: [
  5. // <== this is a submenu
  6. {
  7. text: 'Action 1',
  8. callback: action,
  9. },
  10. {
  11. text: 'Other action',
  12. callback: action2,
  13. },
  14. ],
  15. },
  16. {
  17. text: 'Add a Marker',
  18. icon: 'img/marker.png',
  19. callback: marker,
  20. },
  21. '-', // this is a separator
  22. ];
Would you like to propagate custom data to the callback handler?
  1. const removeMarker = function (obj) {
  2. vectorLayer.getSource().removeFeature(obj.data.marker);
  3. };
  4. const removeMarkerItem = {
  5. text: 'Remove this Marker',
  6. icon: 'img/marker.png',
  7. callback: removeMarker,
  8. };
  9. let restore = false;
  10. contextmenu.on('open', function (evt) {
  11. const feature = map.forEachFeatureAtPixel(evt.pixel, function (ft, l) {
  12. return ft;
  13. });
  14. if (feature) {
  15. contextmenu.clear();
  16. removeMarkerItem.data = { marker: feature };
  17. contextmenu.push(removeMarkerItem);
  18. restore = true;
  19. } else if (restore) {
  20. contextmenu.clear();
  21. contextmenu.extend(contextmenu_items);
  22. contextmenu.extend(contextmenu.getDefaultItems());
  23. restore = false;
  24. }
  25. });

API

Constructor

new ContextMenu(options)

options is an object with the following possible properties:
  • eventType: contextmenu; The listening event type (You could use 'click', 'dblclick')
  • defaultItems: true; Whether the default items (which are: Zoom In/Out) are enabled
  • width: 150; The menu’s width
  • items: []; An array of object|string

Methods

contextmenu.clear()

Remove all elements from the menu.

contextmenu.closeMenu()

Close the menu programmatically.

contextmenu.extend(arr)

@param {Array} arr

Add items to the menu. This pushes each item in the provided array to the end of the menu.

Example:

  1. const contextmenu = new ContextMenu();
  2. map.addControl(contextmenu);
  3. const add_later = [
  4. '-', // this is a separator
  5. {
  6. text: 'Add a Marker',
  7. icon: 'img/marker.png',
  8. callback: marker,
  9. },
  10. ];
  11. contextmenu.extend(add_later);

contextmenu.push(item)

@param {Object|String} item

Insert the provided item at the end of the menu.

contextmenu.shift()

Remove the first item of the menu.

contextmenu.pop()

Remove the last item of the menu.

contextmenu.getDefaultItems()

Get an array of default items.

contextmenu.isOpen()

Whether the menu is open.

contextmenu.updatePosition(pixel)

@param {Array} pixel

Update menu’s position.

Events

If you want to disable this plugin under certain circumstances, listen to beforeopen

  1. contextmenu.on('beforeopen', function (evt) {
  2. const feature = map.forEachFeatureAtPixel(evt.pixel, function (ft, l) {
  3. return ft;
  4. });
  5. if (feature) {
  6. // open only on features
  7. contextmenu.enable();
  8. } else {
  9. contextmenu.disable();
  10. }
  11. });

Listen and make some changes when context menu opens

  1. contextmenu.on('open', function (evt) {
  2. const feature = map.forEachFeatureAtPixel(evt.pixel, function (ft, l) {
  3. return ft;
  4. });
  5. if (feature) {
  6. // add some other items to the menu
  7. }
  8. });

Any action when context menu gets closed?

  1. contextmenu.on('close', function (evt) {
  2. // it's upon you
  3. });