回答編集履歴
1
修正
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
```python
|
14
14
|
|
15
|
-
|
15
|
+
obj = {
|
16
16
|
|
17
17
|
"type": "FeatureCollection",
|
18
18
|
|
@@ -104,7 +104,7 @@
|
|
104
104
|
|
105
105
|
|
106
106
|
|
107
|
-
output = "data='{" + json.dumps(
|
107
|
+
output = "data='{" + json.dumps(obj) + "}"
|
108
108
|
|
109
109
|
|
110
110
|
|