Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • OpenLayers 2.10 Beginner's Guide
  • Toc
  • feedback
OpenLayers 2.10 Beginner's Guide

OpenLayers 2.10 Beginner's Guide

4.2 (9)
close
OpenLayers 2.10 Beginner's Guide

OpenLayers 2.10 Beginner's Guide

4.2 (9)

Overview of this book

Table of Contents (18 chapters)
close
OpenLayers 2.10
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time For Actions – working with more events


In this example, we'll examine the events related to adding features to the map. We'll look at the feature added event type, which gets triggered when a feature is added to the map (either programmatically or by a user), as well as sketch events which can be triggered by the EditingToolbar control.

  1. Open up the first example from this chapter. Again, we'll use Firebug.

  2. This time, we'll demonstrate the featureadded, sketchstarted, and sketchcomplete events. Let's create three appropriate listener functions:

    function feature_added(feature){ console.log('feature added', feature); };
    function sketch_start(feature){ console.log( 'sketch started:', feature); };
    function sketch_complete(feature){ console.log( 'sketch done:', feature); };
  3. Now, register the feature added event:

    map.layers[1].events.register('featureadded', this, feature_added);
  4. Take a look at the map and add a feature. You should see a message after adding a point or after adding a polygon /...

Unlock full access

Continue reading for free

A Packt free trial gives you instant online access to our library of over 7000 practical eBooks and videos, constantly updated with the latest in tech
bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete