Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to add a slider in R that can change certain values which are visualized?
For a project I want to make a suitability map with a certain amount of layers. The user of the map should be able to change the weights that the different layers contribute to the suitability.
After some research I found that this is possible in javascript, however I never used javascript.
This should be achievable with shiny.
Your question is too open-ended.
however I never used javascript
Start by reading https://cran.r-project.org/web/packages/leafletR/leafletR.pdf and then https://github.com/chgrl/leafletR .
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a aspx webpage in which I want to display employee's monthly attendance in a chart.
So suggest me which chart can I use to do this task and also how to implement it.
And chart must me able to show day,time,workinghours,daytype.
I already have a sql table for it.
There are various chart libraries for it. But I would suggest CanvasJs or D3.js
These are super flexible and customizable. You can do whatever you want.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
My client wants something similar to the action that occurs the first time you load the page http://www.denisechandler.com/ (the creation of those corals and the gentle drops once it finishes).
I was thinking of doing it with Canvas, but I wanted to ask if you have any ideas how this could have been done?
Maybe there is a better alternative to making it, because you know, canvas is canvas :duh:
That website (which is cool), uses svg and a javascript library call lazy line painter. https://github.com/camoconnell/lazy-line-painter
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm looking to find out if the interactive map on this website is custom made or used from another source which I can replicate - http://www.nomadicmatt.com/travel-guides/, I'm not a coder so was wondering if it's possible to find this from the page source info or possibly another way?
it's using GeoChart from google api. like you can see in the source code:
<script src="http://www.google.com/uds/api/visualization/1.0/8c95b72e5c145d5b3d7bb8b4ea74fd63/format+en,default+en,ui+en,geochart+en.I.js" type="text/javascript"></script>
https://developers.google.com/maps/documentation/javascript/tutorial
But if you are not a coder - it will be hard for you to implement this.
It's an interactive world maps plugin for wordpress.
However this question does not belong on S/O.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to make my website remember variables for each user and display them, something like local storage that I can use in c#. What is the best way to achieve this concept?
ASP.NET Session State is what you are looking for.
http://msdn.microsoft.com/en-us/library/ms972429.aspx
Or if you want permanent storage (ie they leave and come back another day)
Connecting to a SQL Server database.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I just want to create a navigation panel where user can click on an arbitrary city on a country map and will be redirected to related page. I am aware of ImageMap class but I don't think, this would be the right way to do it. By the way onmouseover that city should be highlighted somehow. I have made some research but couldn't find anything related to that technique. Do you know how to achieve that? Is there any plug-in or class or etc. to do that?
Here is the link, what I am trying to achieve:
You can draw map on HTML5 canvas. Using such solution will allow you to use event like onmouseover. The only problem is that you will have to source code of such map.