43 lines
842 B
Plaintext
43 lines
842 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.index({
|
|
index: "example",
|
|
document: {
|
|
location: {
|
|
type: "multipolygon",
|
|
coordinates: [
|
|
[
|
|
[
|
|
[1002, 200],
|
|
[1003, 200],
|
|
[1003, 300],
|
|
[1002, 300],
|
|
[1002, 200],
|
|
],
|
|
],
|
|
[
|
|
[
|
|
[1000, 200],
|
|
[1001, 100],
|
|
[1001, 100],
|
|
[1000, 100],
|
|
[1000, 100],
|
|
],
|
|
[
|
|
[1000.2, 200.2],
|
|
[1000.8, 100.2],
|
|
[1000.8, 100.8],
|
|
[1000.2, 100.8],
|
|
[1000.2, 100.2],
|
|
],
|
|
],
|
|
],
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|