Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better behavior when inspecting long properties #904

Open
Rodrigodd opened this issue Oct 3, 2024 · 0 comments
Open

Better behavior when inspecting long properties #904

Rodrigodd opened this issue Oct 3, 2024 · 0 comments

Comments

@Rodrigodd
Copy link

I am working with GeoJSONs with very long properties, and it is hard to visualize them directly in the popup. It would be much more useful if geojson.io handled it better, like for example:

  • Allowing resizing the popup, to make it bigger.
  • Display multiline properties (it may need to be togglable).
  • Have a horizontal scrollbar, or at least scrollable by mouse (actually you can already scroll with shift+wheel)

Example GeoJSON

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [0.0365, 0.0472],
            [0.0012, 0.0472],
            [0.0012, 0.0114],
            [0.0365, 0.0114],
            [0.0365, 0.0472]
          ]
        ]
      },
      "properties": {
        "prop": 0.1234567890,
        "very_long_prop": [
          {
            "value": 0.7361728419762,
            "name": "long name"
          },
          {
            "value": 0.7361728419762,
            "name": "long name"
          }
        ]
      }
    }
  ]
}

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant