{"id":15037711,"url":"https://github.com/talkingdata/inmap","last_synced_at":"2025-10-06T13:43:07.163Z","repository":{"id":57274184,"uuid":"96424863","full_name":"TalkingData/inmap","owner":"TalkingData","description":"大数据地理可视化 ","archived":false,"fork":false,"pushed_at":"2024-03-04T06:49:46.000Z","size":14130,"stargazers_count":2788,"open_issues_count":56,"forks_count":354,"subscribers_count":106,"default_branch":"master","last_synced_at":"2025-05-12T07:42:30.999Z","etag":null,"topics":["data-visualization","inmap","map","talkingdata","visualization","visualize-data"],"latest_commit_sha":null,"homepage":"https://fengluhome.github.io/inmap-doc","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TalkingData.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-06T11:52:09.000Z","updated_at":"2025-05-04T03:09:45.000Z","dependencies_parsed_at":"2024-06-18T17:11:20.018Z","dependency_job_id":"d81f16cd-3964-43c6-ba70-1a8068f2f758","html_url":"https://github.com/TalkingData/inmap","commit_stats":{"total_commits":555,"total_committers":10,"mean_commits":55.5,"dds":"0.34774774774774775","last_synced_commit":"77098925a9e5219810729180413591550c7fc8e5"},"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalkingData%2Finmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalkingData%2Finmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalkingData%2Finmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalkingData%2Finmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TalkingData","download_url":"https://codeload.github.com/TalkingData/inmap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254149958,"owners_count":22022851,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-visualization","inmap","map","talkingdata","visualization","visualize-data"],"created_at":"2024-09-24T20:35:23.592Z","updated_at":"2025-10-06T13:43:02.144Z","avatar_url":"https://github.com/TalkingData.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"http://inmap.talkingdata.com\"\u003e\n        \u003cimg width=\"200\" src=\"http://file.iviewui.com/inmap-logo.svg\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n# inMap\n[![GitHub license](https://img.shields.io/github/license/TalkingData/inmap.svg?style=flat-square)](https://github.com/TalkingData/inmap/blob/master/LICENSE)\n[![](https://img.shields.io/travis/TalkingData/inmap.svg?style=flat-square)](https://travis-ci.org/TalkingData/inmap)\n[![inMap](https://img.shields.io/npm/v/inmap.svg?style=flat-square)](https://www.npmjs.org/package/inmap)\n[![NPM downloads](http://img.shields.io/npm/dm/inmap.svg?style=flat-square)](https://npmjs.org/package/inmap)\n[![NPM downloads](https://img.shields.io/npm/dt/inmap.svg?style=flat-square)](https://npmjs.org/package/inmap)\n\n\n\n## 介绍\ninMap 是一款基于百度地图的大数据可视化库，专注于大数据方向的散点、热力图、网格、聚合等方式展示，致力于让大数据可视化变得简单易用。\n\n## Features\n- 高性能.\n- 多线程.\n- 多图层叠加.\n- 支持GeoJSON\n- 友好的 API.\n- 可以自定义主题.\n\n## 文档\n[https://fengluhome.github.io/inmap-doc](https://fengluhome.github.io/inmap-doc)\n\n## 示例效果图\n![image](https://raw.githubusercontent.com/TalkingData/inmap/master/examples/img/cover1.jpg)\n![image](https://raw.githubusercontent.com/TalkingData/inmap/master/examples/img/cover2.jpg)\n## 首先引用地图\n```html\n\u003cscript type=\"text/javascript\" src=\"http://api.map.baidu.com/api?v=3.0\u0026ak=0lPULNZ5PmrFVg76kFuRjezF\"\u003e\u003c/script\u003e\n```\n## 安装\nUsing npm:\n```\nnpm install inmap --save\n```\n\n或使用 \u003cscript\u003e 全局引用，inMap 会被注册为一个全局变量:\n```html\n\u003cscript type=\"text/javascript\" src=\"http://unpkg.com/inmap/dist/inmap.min.js\"\u003e\u003c/script\u003e\n```\n\n## 示例\n\n```html\n\u003cscript\u003e\nvar inmap = new inMap.Map({\n    id: 'allmap',  \n    skin: 'Blueness',\n    center: [105.403119, 38.028658], // center of map\n    zoom: {\n        value: 5, // level of map\n        show: true, // whether to display the zoom button\n        max: 18, \n        min: 5\n    }\n})\n\u003c/script\u003e\n```\n###### [examples](https://github.com/fengluhome/inMapWebApp)\n\n## 预览当前项目所有demo\n```shell\n# 从 GitHub 下载后，安装依赖\nnpm install\n\n# 编译代码\nnpm run dev \u0026 npm run start\n\n在浏览器地址栏输入：http://localhost:8088/examples/index.html\n```\n \n\n## Major Contributors\n|Name|Avatar|\n|---|---|\n|[fengluhome](https://github.com/fengluhome) |  ![](https://avatars3.githubusercontent.com/u/4446509?v=3\u0026s=60)|\n|[Aresn](https://github.com/icarusion) |  ![](https://avatars3.githubusercontent.com/u/5370542?v=3\u0026s=60)|\n|[ChowBu](https://github.com/ChowBu) |  ![](https://avatars3.githubusercontent.com/u/7564637?v=3\u0026s=60)|\n|[cheekahao](https://github.com/cheekahao) |  ![](https://avatars3.githubusercontent.com/u/11977758?v=3\u0026s=60)|\n|[chenli8](https://github.com/chenli8) |  ![](https://avatars3.githubusercontent.com/u/24763413?v=3\u0026s=60)|\n\n欢迎加入QQ反馈问题: 618308202\n\n## Links\n- [TalkingData](https://github.com/TalkingData)\n- [iView](https://github.com/iview/iview)\n\n## License\n[Apache License 2.0](https://github.com/TalkingData/inmap/blob/master/LICENSE)\n\nCopyright (c) 2015-present, TalkingData\n","funding_links":[],"categories":["\u003ca id=\"1d9dec1320a5d774dc8e0e7604edfcd3\"\u003e\u003c/a\u003e工具-新添加的"],"sub_categories":["\u003ca id=\"8f1b9c5c2737493524809684b934d49a\"\u003e\u003c/a\u003e文章\u0026\u0026视频"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalkingdata%2Finmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalkingdata%2Finmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalkingdata%2Finmap/lists"}