You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One common use-case could be to have a set of input files (GLB, B3DM...), and the goal could be to assign different positions to each of them.
This could be "emulated", to some extent, by calling createTilesetJson with the proper cartographicPositionDegrees for each of them, and then use merge/combine to create a single tileset from the results. But this is not very convenient and does not scale well.
The question of how this functionality could be offered is still open. But on the level of brainstorming, I could imagine that there is some overlap of this functionality and #84 . For example, there could be some very simple input file format like
from which a tileset could be created where each content has the given position. And one could use a similar file format for defining multiple instances. For example, when the content is the same, as in
where the instancing information is passed in more explicitly.
Again, this is brainstorming - there are many details to be sorted out. But my gut feeling is that it could be relatively easy to offer some really useful functions here.
Right now, it is not even clear whether this should be based on an input file, or a functionality that is offered at the API level. The pseudocode from the linked issue that said
(This is a spin-off from #111 )
The
createTilesetJson
command has recently been extended to allow placing the resulting tileset at a certain position, by passing in thecartographicPositionDegrees
that the tileset should have.One common use-case could be to have a set of input files (GLB, B3DM...), and the goal could be to assign different positions to each of them.
This could be "emulated", to some extent, by calling
createTilesetJson
with the propercartographicPositionDegrees
for each of them, and then usemerge
/combine
to create a single tileset from the results. But this is not very convenient and does not scale well.The question of how this functionality could be offered is still open. But on the level of brainstorming, I could imagine that there is some overlap of this functionality and #84 . For example, there could be some very simple input file format like
from which a tileset could be created where each content has the given position. And one could use a similar file format for defining multiple instances. For example, when the
content
is the same, as inthen it could automatically create instanced models. Alternatively, there could be something like
where the instancing information is passed in more explicitly.
Again, this is brainstorming - there are many details to be sorted out. But my gut feeling is that it could be relatively easy to offer some really useful functions here.
Right now, it is not even clear whether this should be based on an input file, or a functionality that is offered at the API level. The pseudocode from the linked issue that said
could be more flexible, and probably acceptable for users who want and need more options and configurability here.
The text was updated successfully, but these errors were encountered: