i got a problem with GIS map update and routs findings. The massage i got
sun.security.provider.certpath.SunCertPathBuilderException
Also the GIS map is not loading.
Kinly ask you to suggest what can be fixed with Anylogic and|or WIndows
Thank you in advance
Printscreen of the error:
This problem arises when the server has a self-signed certificate. Please double-check that in your GIS map the Tile provider has been selected as AnyLogic and that the routes are also "Requested from OSM serve" and that the Routing server is chosen as "AnyLogic".
This might just be a temporary issue on AnyLogic side, if if persists please contact support.
Related
We are running our own OSM tile server and OSRM. It is pretty straight forward to set URLs for both when accessing them in Java/Android (OSMDroid) and Web (Leaflet). Is there a comparable open source / free package or library (not Mapbox) out there for an Apple app? Or suggestion for resources to help us understand how to access our OSRM in MapKit? We can see how to add OSM tiles to MapKit, but are struggling to understand how to get routing directions from our OSRM instance. Thanks.
I would like to know how we can contact Mapbox team to correct cities boundaries that are not correctly defined. We tried in Snap Map settings MapBox option but that redirects to their main website. Also we found its using openstreetmap and we updated the boundaries there but those data are not synchronized with Snap Map.
Also raised a question to technical support team but not receiving any update and in their auto reply its mentioned to use "mapbox" tag in StackOverflow to get response.. Hence I am requesting here for help .. I would appreciate if we have direct way of communication to fix this boundaries issue and we will use proper communication channel for such requests. Thanks
While working with Anylogic user can open properties of some GIS route (or some other object) and push checkbox "Ignore". The GIS route will be excluded from the model and after running the model user wont see the object because it wont exist.
Is it possible to exclude some GIS routes in interactive mode? For example I drew in Anylogic big GIS network with many GIS routes and after running the model (!) I want to have a possibility to choose routes which should not be included in the network. E.g. it can be implemented in Simulation window.
I was looking for suitable JAVA code but I did not find anything except Visible-property.
you can not programmatically "ingore" something, this is not how Java works.
In your case, the only way is to create the GIS network programmatically as well at the start of the model. Now you have full control because you could decide to only create part of your network, depending on user choice.
Check the AnyLogic API on how to create GIS routes programmatically.
cheers
I have successfully generated composer rest api followed by instruction given by https://hyperledger.github.io/composer/latest/tutorials/developer-tutorial.html finally am getting success message
Discovering types from business network definition ...
Discovered types from business network definition
Generating schemas for all types in business network definition ...
Generated schemas for all types in business network definition
Adding schemas for all types to Loopback ...
Added schemas for all types to Loopback
Web server listening at: http://localhost:3000
Browse your REST API at http://localhost:3000/explorer
and after am adding participant getting 200 response code in api , but the added data not displayed in composer playground, whats the issue in this? anyhelp appreciated
I think there is a problem with your starting a business-network or upgrading a business-network. please ensure that your started network version same as composer-rest-server API version shown on http://localhost:3000/explorer/. If there is an issue then you can do ./stopFabric.sh. and then start your business-network again.
the playground is exactly what it says, a playground. It's a little environment to help you play with models, test them and create a bna from the result, not to deploy a fully working network.
However, if you do want to see some real data then you have to connect it to an actual network using a proper network card. If you use the web version then that's not connected to anything real.
So, connect the playground to the same network card you used to create the composer rest api and then you will be able to see something.
This being said, the best way to check your data actually exists on the ledger is to use the composer api you used to create you assets.
Every asset endpoint accepts all the verbs you need to work with. You used POST to create an asset, now use the GET method to check the data on the ledger. if you look at the swagger interface, you will see all endpoint, all verbs they accept and the data models required
im testing my game on webgl build and i have encountered an error when i tried to fetch data from the database :
XMLHttpRequest cannot load Origin is not allowed by Access-Control-Allow-Origin.
i understand that it got something to do with javascript security thing that i have no experience with.
any one know how t solve this issue?
The Unity Manual discusses this here. Do you have direct control of the server? If so, implement CORS there. If not, try moving the affected resources to the same server your unity scripts are running from.
If you need more specific advice, you'll need to provide more details.