Coder Social home page Coder Social logo

Comments (1)

roblabs avatar roblabs commented on August 11, 2024

The array of [lat,lng] points is being passed into encode as a rawString. The proper fix would be to add JSON.parse() to what is passed to encode in the CLI wrapper file. Its unlikely that this fix would break other users. (requesting @ Mapbox team to review)


Change return polyline.encode(...)

return polyline.encode(rawString, p);

to

return polyline.encode(JSON.parse(rawString), p);

See:
https://github.com/mapbox/polyline/blob/4852d2468195f71cd240b50e48b87a8f5f4ce143/bin/polyline.bin.js#L75,L85


Testing with these commands encodes a polyline, but returns extra quotes:

# returns extra quotes due to an extra stringify
#   "w{qeFj`wjVwAzJJ?"
cat points.unencoded.txt | ./node_modules/.bin/polyline --encode

Where points.unencoded.txt contains:

[[37.77996,-122.51158],[37.7804,-122.51348],[37.78034,-122.51348]]

from polyline.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.