{"id":13581413,"url":"https://github.com/placemark/placemark","last_synced_at":"2026-04-19T23:09:36.069Z","repository":{"id":218070042,"uuid":"728420934","full_name":"placemark/placemark","owner":"placemark","description":"A flexible web-based editor, converter, visualization tool, for geospatial data","archived":false,"fork":false,"pushed_at":"2026-03-14T20:56:17.000Z","size":3421,"stargazers_count":1412,"open_issues_count":21,"forks_count":118,"subscribers_count":13,"default_branch":"main","last_synced_at":"2026-03-15T05:55:30.788Z","etag":null,"topics":["geojson","geospatial","maps"],"latest_commit_sha":null,"homepage":"https://play.placemark.io/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/placemark.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-06T22:50:07.000Z","updated_at":"2026-03-14T20:55:52.000Z","dependencies_parsed_at":"2026-01-01T03:02:29.658Z","dependency_job_id":null,"html_url":"https://github.com/placemark/placemark","commit_stats":{"total_commits":53,"total_committers":10,"mean_commits":5.3,"dds":0.5094339622641509,"last_synced_commit":"33b42b6011d6bdfe46a4a0b20cfd1e1822416d25"},"previous_names":["placemark/placemark"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/placemark/placemark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/placemark%2Fplacemark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/placemark%2Fplacemark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/placemark%2Fplacemark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/placemark%2Fplacemark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/placemark","download_url":"https://codeload.github.com/placemark/placemark/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/placemark%2Fplacemark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32025789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["geojson","geospatial","maps"],"created_at":"2024-08-01T15:02:01.408Z","updated_at":"2026-04-19T23:09:36.063Z","avatar_url":"https://github.com/placemark.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Placemark\n\n[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fplacemark%2Fplacemark\u0026env=VITE_PUBLIC_MAPBOX_TOKEN)\n\nPlacemark is an open source[^1] and free application for creating, viewing,\nediting, and analyzing map data. Most people who want to use this application\nshould visit [Placemark.io](https://www.placemark.io/), the main instance.\nThe rest of this README is for people who want to tinker with it as a developer,\nfork it, etc.\n\n## Getting started\n\nThere are more sophisticated approaches using Docker or Render (see files), but\nthe following simple approach works locally on macOS:\n\n1. Clone the repository, change to this directory, and install dependencies.\n\nThis repository expects you to use [pnpm](https://pnpm.io/) and Node 24.5.0,\nwhich can be installed using [mise](https://mise.jdx.dev/) or manually.\n\n```\ngit clone\npnpm install\n```\n\n2. Obtain a [Mapbox public access token](https://account.mapbox.com/)\n   ([docs](https://docs.mapbox.com/help/getting-started/access-tokens/)) and\n   [Geocode Earth token](https://app.geocode.earth/keys)\n   ([docs](https://geocode.earth/docs/intro/authentication/)).\n\n3. Configure the package with the tokens from the previous step:\n\n```sh\nVITE_PUBLIC_MAPBOX_TOKEN=\"\u003cyour Mapbox public access token\u003e\" \\\nVITE_PUBLIC_GEOCODE_EARTH_TOKEN=\"\u003cyour Geocode Earth token\u003e\" \\\n```\n\n4. Start the server:\n\nEither in development mode with hot-reloading:\n\n```sh\npnpm dev\n```\n\nOr build a `dist/` directory that you can serve as normal files:\n\n```sh\npnpm build\npnpm dlx serve@latest dist\n```\n\nIf you're planning to run this often or publicly, take care to secure your\ntokens better by adding [URL restrictions to the Mapbox token](https://docs.mapbox.com/help/getting-started/access-tokens/#url-restrictions) and setting allowed Referrer Hostnames to the Geocode Earth one.\n\nFor local development, copy `.env.example` to `.env.local` and add your tokens there:\n```sh\ncp .env.example .env.local\n```\n\n[^1]: With the narrow exception, right now, of [Mapbox GL JS](https://github.com/mapbox/mapbox-gl-js/blob/main/LICENSE.txt), which\n  has a restrictive license. We have plans to migrate to [maplibre-gl](https://npmx.dev/package/maplibre-gl), an\n  open-source fork of Mapbox GL JS (unfortunately, [funded primarily](https://maplibre.org/news/2026-02-18-supporting-maplibre/) by\n  US tech oligopolies like Microsoft) when there's time.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplacemark%2Fplacemark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplacemark%2Fplacemark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplacemark%2Fplacemark/lists"}