0.1.4 • Published 7 years ago

tilestrata-jsonp v0.1.4

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
7 years ago

tilestrata-jsonp

NPM version Build Status Coverage Status

A TileStrata plugin sending JSON as JSONP (wrapping it in a callback defined in the query string). This allows cross-origin use of utfgrids without setting up CORS.

$ npm install tilestrata-jsonp --save

Sample Usage

var jsonp = require('tilestrata-jsonp');

server.layer('mylayer').route('tile.json')
    .use(jsonp({variable: 'cb'}));

With this in place you can make requests like:

/mylayer/0/0/0/tile.json?cb=callback12389381

Contributing

Before submitting pull requests, please update the tests and make sure they all pass.

$ npm test

License

Copyright © 2015 Natural Atlas, Inc. & Contributors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.