react-native-map4d-services 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -33,7 +33,7 @@ public class SRequest {
|
|
|
33
33
|
String location = SConverter.toLocation(params.getMap("location"));
|
|
34
34
|
requestParams.put("location", location);
|
|
35
35
|
}
|
|
36
|
-
serviceOptionsBuilder.
|
|
36
|
+
serviceOptionsBuilder.params(requestParams);
|
|
37
37
|
return serviceOptionsBuilder.build();
|
|
38
38
|
}
|
|
39
39
|
|
|
@@ -73,7 +73,7 @@ public class SRequest {
|
|
|
73
73
|
String datetime = SConverter.toDatetime(params.getDouble("datetime"));
|
|
74
74
|
requestParams.put("datetime", datetime);
|
|
75
75
|
}
|
|
76
|
-
serviceOptionsBuilder.
|
|
76
|
+
serviceOptionsBuilder.params(requestParams);
|
|
77
77
|
return serviceOptionsBuilder.build();
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -113,7 +113,7 @@ public class SRequest {
|
|
|
113
113
|
requestParams.put("datetime", datetime);
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
serviceOptionsBuilder.
|
|
116
|
+
serviceOptionsBuilder.params(requestParams);
|
|
117
117
|
return serviceOptionsBuilder.build();
|
|
118
118
|
}
|
|
119
119
|
|
|
@@ -147,7 +147,7 @@ public class SRequest {
|
|
|
147
147
|
String datetime = SConverter.toDatetime(params.getDouble("datetime"));
|
|
148
148
|
requestParams.put("datetime", datetime);
|
|
149
149
|
}
|
|
150
|
-
serviceOptionsBuilder.
|
|
150
|
+
serviceOptionsBuilder.params(requestParams);
|
|
151
151
|
return serviceOptionsBuilder.build();
|
|
152
152
|
}
|
|
153
153
|
|
|
@@ -171,7 +171,7 @@ public class SRequest {
|
|
|
171
171
|
String viewbox = SConverter.toViewbox(params.getMap("viewbox"));
|
|
172
172
|
requestParams.put("viewbox", viewbox);
|
|
173
173
|
}
|
|
174
|
-
serviceOptionsBuilder.
|
|
174
|
+
serviceOptionsBuilder.params(requestParams);
|
|
175
175
|
return serviceOptionsBuilder.build();
|
|
176
176
|
}
|
|
177
177
|
|
|
@@ -225,7 +225,7 @@ public class SRequest {
|
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
-
serviceOptionsBuilder.
|
|
228
|
+
serviceOptionsBuilder.params(requestParams);
|
|
229
229
|
return serviceOptionsBuilder.build();
|
|
230
230
|
}
|
|
231
231
|
|
|
@@ -326,7 +326,7 @@ public class SRequest {
|
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
-
serviceOptionsBuilder.
|
|
329
|
+
serviceOptionsBuilder.params(requestParams);
|
|
330
330
|
return serviceOptionsBuilder.build();
|
|
331
331
|
}
|
|
332
332
|
|
|
@@ -370,7 +370,7 @@ public class SRequest {
|
|
|
370
370
|
}
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
serviceOptionsBuilder.
|
|
373
|
+
serviceOptionsBuilder.params(requestParams);
|
|
374
374
|
return serviceOptionsBuilder.build();
|
|
375
375
|
}
|
|
376
376
|
}
|