You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone https://github.com/mattcg/exiflocation.git
cd exiflocation/
make
Alternatively, use Component to install to your project.
component install exiflocation
ExifLocation is also available using Bower.
bower install exiflocation
API
See example/ for a complete example.
ExifLocation.checkSupport()
ExifLocation uses FileReader and DataView (available since Chrome 9, Firefox 15, IE 10, Safari 5.1). Use this method to check support in the current runtime.
Pass a FileList as the first argument. The progressCb argument is a function that's executed once for each file in the list, receiving an error (if any) as the first argument and the ExifLocation instance as the second. The cb argument is executed once all the files have been loaded and receives an array of ExifLocation instances in the same order as the corresponding files in fileList.
Receives a File as the first argument. The callback function receives an error object or null as the first argument and the ExifLocation instance as the second.
Get a Google Maps URL for the embedded location. The protocol is relative by default. The type parameter is either 'm' for the normal map (default), 'k' for satellite, 'h' for hybrid, 'p' for terrain or 'e' for Google Earth.