#polyline #encode-decode #point #encoded #format #algorithm #coordinates

polyline_rust

Crate 用于在 "Encoded Polyline Algorithm Format" 中编码/解码折线

1 个不稳定版本

0.1.1 2020年5月25日

#1807算法

MIT 许可证

16KB
310

polyline-rust

Crate 用于在 "Encoded Polyline Algorithm Format" 中编码/解码折线。

使用示例

use polyline_rust::{Point, encode, decode};

fn main() {
    let polyline = encode(vec![
        Point::new(12.34567, 89.01234),
        Point::new(12.34891, 89.01567),
        Point::new(12.35678, 89.01891),
    ], 5);
    println!("{}", polyline); // output: "mgjjAcfh~OgSySep@gS"

    let coordinates = decode(&polyline, 5);
    for point in coordinates {
        println!("{}, {}", point.latitude, point.longitude);
    }
    /*
        output:
            12.34567, 89.01234
            12.34891, 89.01567
            12.35678, 89.01891
     */
}

lib.rs:

polyline_rust

Crate 用于在 "Encoded Polyline Algorithm Format" 中编码/解码折线

使用示例

use polyline_rust::{Point, encode, decode};

fn main() {
    let polyline = encode(vec![
        Point::new(12.34567, 89.01234),
        Point::new(12.34891, 89.01567),
        Point::new(12.35678, 89.01891),
    ], 5);
    println!("{}", polyline); // output: "mgjjAcfh~OgSySep@gS"

    let coordinates = decode(&polyline, 5);
    for point in coordinates {
        println!("{}, {}", point.latitude, point.longitude);
    }
    /*
        output:
            12.34567, 89.01234
            12.34891, 89.01567
            12.35678, 89.01891
     */
}

无运行时依赖