npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@maptalks/analysis

v0.98.3

Published

a plugin to excute many analysis tasks

Downloads

563

Readme

maptalks.analysis

NPM Version

Usage

maptalks.analysis a plugin to excute analysis task in maptalks.

Install

  • Install with npm: npm install @maptalks/analysis.
  • Use unpkg CDN: https://unpkg.com/@maptalks/analysis/dist/maptalks.analysis.js

Vanilla Javascript

<script type="text/javascript" src="../maptalks.analysis.js"></script>
<script>
var map = new maptalks.Map("map",{
    center : [0, 0],
    zoom   :  15
});
var groupLayer = new maptalks.GroupGLLayer('g', [], { sceneConfig }).addTo(map);
var center = map.getCenter();
var eyePos = [center.x + 0.01, center.y, 0];
var lookPoint = [center.x, center.y, 0];
var verticalAngle = 30;
var horizontalAngle = 20;
var viewshedAnalysis = new maptalks.ViewshedAnalysis({
    eyePos,
    lookPoint,
    verticalAngle,
    horizontalAngle
});
viewshedAnalysis.addTo(groupLayer);
</script>

ES6

import { ViewshedAnalysis } from '@maptalks/analysis';

const map = new maptalks.Map("map",{
    center : [0, 0],
    zoom   :  15
});
const groupLayer = new maptalks.GroupGLLayer('g', [], { sceneConfig }).addTo(map);
const center = map.getCenter();
const eyePos = [center.x + 0.01, center.y, 0];
const lookPoint = [center.x, center.y, 0];
const verticalAngle = 30;
const horizontalAngle = 20;
const viewshedAnalysis = new maptalks.ViewshedAnalysis({
    eyePos,
    lookPoint,
    verticalAngle,
    horizontalAngle
});
viewshedAnalysis.addTo(groupLayer);

API

  • Class : ViewshedAnalysis(inherited from maptalks.Eventable)

    ViewshedAnalysis's constructor.

    Method : new ViewshedAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | eyePos | Array | null | position of eye, include longitude、latitude、altitude | | lookPoint | Array | null | position of look point | | verticalAngle | Number | 90 | vertical angle of viewer | | horizontalAngle | Number | 90 | horizontal angle of viewer |

    Method : addTo(groupgllayer)

    add viewshed analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : ViewshedAnalysis: this

    Method : remove()

    remove the viewshed analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : ViewshedAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available ViewshedAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

  • Class : FloodAnalysis(inherited from maptalks.Eventable)

    FloodAnalysis's constructor.

    Method : new FloodAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | boundary | Array | | the coordinate rings of flood boundary | | waterColor | Array | [0.1451, 0.2588, 0.4863] | the color of water | | waterHeight | Array | null | the depth of water|

    Method : addTo(groupgllayer)

    add flood analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : FloodAnalysis: this

    Method : remove()

    remove the flood analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : FloodAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available FloodAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

  • Class : SkylineAnalysis(inherited from maptalks.Eventable)

    SkylineAnalysis's constructor.

    Method : new SkylineAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | lineColor | Array | [1, 0, 0] | the color of skyline | | lineWidth | Array | 1.0 | the width of skyline|

    Method : addTo(groupgllayer)

    add skyline analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : SkylineAnalysis: this

    Method : remove()

    remove the skyline analysis from groupgllayer

    Method : exportSkylineMap(options)

    remove the skyline analysis from groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | save | Boolean | true | whether pop a file save dialog to save the export image | | filename | String | export | specify the file name, if options.save is true |

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : SkylineAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available SkylineAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

  • Class : InsightAnalysis(inherited from maptalks.Eventable)

    InsightAnalysis's constructor.

    Method : new InsightAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | lineColor | Array | [1, 0, 0] | the color of Insight | | lineWidth | Array | 1.0 | the width of Insight|

    Method : addTo(groupgllayer)

    add insight analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : InsightAnalysis: this

    Method : remove()

    remove the insight analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : InsightAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available InsightAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

  • Class : CutAnalysis(inherited from maptalks.Eventable)

    CutAnalysis's constructor.

    Method : new CutAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | position | Array | | the position of helper parts | | rotation | Array | | the Euler angle of helper parts| | scale | Array | | the scale of helper parts|

    Method : addTo(groupgllayer)

    add cut analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : CutAnalysis: this

    Method : remove()

    remove the cut analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : CutAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available

    returns : CutAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

    Method : reset()

    reset cutanalysis's initial state

    returns : CutAnalysis: return this

  • Class : ExcavateAnalysis(inherited from maptalks.Eventable)

    ExcavateAnalysis's constructor.

    Method : new ExcavateAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | boundary | Array | | the coordinate rings of excavate boundary | | textureUrl | String | | the excavate texture's url | | height | Number | | excavate height |

    Method : addTo(groupgllayer)

    add excavate analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : ExcavateAnalysis: this

    Method : remove()

    remove the excavate analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : ExcavateAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available

    returns : ExcavateAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

  • Class : CrossCutAnalysis(inherited from maptalks.Eventable)

    CrossCutAnalysis's constructor.

    Method : new CrossCutAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | cutLine | Array | | the coordinate rings of cross cut line | | textureUrl | String | | the excavate texture's url | | cutLineColor | Array | [0, 1, 0, 1] | color array |

    Method : addTo(groupgllayer)

    add crosscut analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : CrossCutAnalysis: this

    Method : remove()

    remove the crosscut analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : getAltitudes(count)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | count | Number | | the count of cut times |

    returns : Array: [{distance: [], point: [longitude, latitude, altitude] }

    Method : enable()

    enable the analysis task

    returns : CrossCutAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available

    returns : CrossCutAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false

    • Class : HeightLimitAnalysis(inherited from maptalks.Eventable)

    HeightLimitAnalysis's constructor.

    Method : new HeightLimitAnalysis(options)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | limitHeight | Number | | the limited height of analysis | | limitColor | Array | | limited meshes will be rendered by limitedColor |

    Method : addTo(groupgllayer)

    add limit analysis to groupgllayer | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | groupgllayer | maptalks.GroupGLLayer | | a groupgllayer to add |

    returns : HeightLimitAnalysis: this

    Method : remove()

    remove the limit analysis from groupgllayer

    Method : update(name, value)

    | Parameter | Type | Default | Description| | ------------- |---------- |-------------|--------- | | name | String | | name of property | | value | Any | | value of property |

    Method : enable()

    enable the analysis task

    returns : CrossCutAnalysis: return this

    Method : disable()

    disable the analysis task, when disable the analysis task, it will be not available

    returns : CrossCutAnalysis: return this

    Method : isEnbale()

    whether the analysis task is enable

    returns : Boolean: true or false