Hello.
I can import this GeoJSON file, except if i insert any of these 2 properties to the LineString:
"stroke": " #9e207e" or "stroke-width": 4
In this case, appinventor give this error: "An internal error has occurred. Report a bug?"
In http://geojson.io/ it works fine.
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {"name": "Track", **"stroke": " #9e207e", "stroke-width": 4**},
"geometry": {"type": "LineString","coordinates":
[
[ -0.9039044380187988, 41.65768354783612],
[ -0.8924245834350586, 51.65402822668345]
]}
},
{
"type": "Feature",
"properties": {"marker-color": "#7e007e", "marker-size": "medium", "marker-symbol": "", "name": "ZombieBoy" },
"geometry": { "type": "Point", "coordinates": [-0.8945703506469727, 41.6551184318944]}
}
]
}