Using Own map on OpenLayers - openlayers-3

Is it possible to use your own map on OpenLayers3? And if so where can I find the information, if you are able to provide me that I be very thankfull ;)
Greetings,
Tristan

If you are wanting to run your own mapserver then take a look at http://geoserver.org. You'll have plenty of example on their web site.

Related

Documenting the navigation/layout/design of a website

I thought the answer to this would be easy to find but ...
I am using VS 2012 with C# and MVC 3.
Is there a straightforward tool/method to automatically generate the layout/navigation of a website?
Thanks
There is no magic that will do it for you.
There are plenty of tools that will generate nice Docs in various formats (including MSDN style) from static analysis of your code.
The one that I personally prefer is Sandcastle and you can read more about it here.
Hope it helps.

GetWebResourceUrl equivalent for ASP.NET MVC?

In the old days of ASP.NET, one could use Page.ClientScript.GetWebResourceUrl to get a URL that would extract an embedded resource via the WebResource.axd HttpHandler.
In MVC, there doesn't seem to be ClientScript (or Page, for that matter). I can't find something comparable to this. I scoured MSDN, and I even googled it on bing and didn't find much.
Although I could certainly write this functionality and perhaps have a /Scripts/ controller - I wanted to see if there was a direct equivalent or preferred pattern on how to implement this functionality. Thanks
Take a look ASP.NET MVC - Extracting Web Resources, hope this helps.

ASP.NET MVC web site template

I would like to download ASP.NET MVC web site template. Please guide me where can i find and how i can use. I'm new to this pattern. Thanks in advance.
You can try starting at http://msdn.microsoft.com/en-us/library/dd410597.aspx
it already starts with a little code and design to show you the basics then walks you through a few more things like how controllers work, how a model can be used to simplify dealing with posted values and common content etc.
Here you go!
http://mvccontribgallery.codeplex.com/ - design templates
http://www.asp.net/mvc - look # the sample application section (open source, good tutorials included)
Guys from http://pixelsinspired.com are starting something you may be interested in. There is only one template, but it is free and looks great.

Is there a free chart report tool on ASP.NET MVC?

Can anyone recommend a free tool for generating Charts compatible with ASP.NET MVC?
Take a look at this free web control from Microsoft:
http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx
I tried it with regular web application, not MVC though. Works alright, a little finicky in some details.
What kind of charts you need to deal with? Some time ago I was looking for Gantt chart control, and really did not find any good free ones.
Regards, Anvar
Use Google Chart Tools.
To clarify, GCT isn't specific to ASP.NET MVC. It's a hosted thing that you can call with Javascript. I've use it in MVC and regular ASP.NET project alike. Very clean and nice.
For instance, open your browser and go here:
https://chart.apis.google.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World
You'll see this:
Google charts
The advantages of the Google Chart Tools are:
A rich gallery of visualizations provided as:
Image charts - using a simple URL request to a Google chart server
Interactive charts - using a Google developed JavaScript library
Can read live data from a variety of data sources
Simple to use and free
you can use google chart tool. its easy to use and woks good.
for refrence you can go through below url
http://code.google.com/apis/ajax/playground/?type=visualization
hope i would help you.

Anyone know whether there is a 5-star rating control for asp.net mvc?

I require a star rating control (which allows partial rating like 4.5) for my application built on asp.net mvc.
Any pointers in this direction will be helpful?
Rogie, over at Komodomedia, has spent far too long on this topic writing 3 articles on the topic.
Just in case anyone got lost in the link-soup this is the latest.
It's not MVC specific, but it is cross browser and allows you to get the value back via postback or ajax.
Meanwhile I found this link with example in asp.net.
http://beckelman.net/post/2008/08/30/Survey-Using-jQuery-Star-Rating-Widget.aspx
This is pretty helpful.
Thanks everyone for the help.
I know its not a control, but I found it very easy to implement.
I just implemented this on one of my sites using MVC and it worked beautifully.
http://www.mikesdotnetting.com/Article/114/jQuery-Star-Rating-with-ASP.NET-MVC
This one is my favorite Rating plug-in for JQuery:
http://rateit.codeplex.com/
it comes with good examples:
http://www.radioactivethinking.com/rateit/example/example.htm
There are a couple in the jQuery plug-in list that will be able to do what you require. However there is no specific control for MVC yet.
I tried looking at the links given as response however was not that happy and I developed my own star rating system here and have wrote an article of how I have done it. Hope this will be helpful
http://www.dotnetfunda.com/articles/show/2828/developing-a-star-rating-in-aspnet-mvc
Thanks
I know this is an old post but I like to answer it for everybody who will find this post through search engines.
This article explains how to implement a star rating system for MVC.
I have implemented it and it works like a charm.
http://www.codecapers.com/post/Building-a-Star-Rating-System-with-ASPNET-MVC-and-jQuery.aspx

Resources