ParkWhiz Logo

jQuery ParkWhiz Parking Map

A jQuery plugin that creates a ParkWhiz parking map widget.

View the Project on GitHub

jQuery ParkWhiz Parking Map (v2.0.0)

Demos

Getting Started

First, include all the plugin js/css in the `head` of your page.

<!-- jquery.parkingmap.css -->
<link rel="stylesheet" type="text/css" href="../source/css/jquery.parkingmap.css">

<!-- jQuery,Google Maps, & jquery.parkingmap.js  -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false" type="text/javascript"></script>
<script type="text/javascript" src="../source/jquery.parkingmap.js"></script>

Then, init the plugin by calling it inside a jQuery ready function. Something like this:

$(function() {
	$("#parkwhiz-widget-venue").parkingMap({
		parkwhizKey: '...',
		location: {
			venue: 'united-center-parking',
		},
		// etc...
	});
});

Configuration Settings

See the full list of settings on the github repo readme.md file.

Contact, FAQ, Etc.

I found a bug or have a feature request. Please submit any bugs you might find on the repo issues tab

Feel free to contact us if you have any further questions about jquery.parkingmap.js.

License

The MIT License (MIT)

Copyright © ParkWhiz, Inc., http://parkwhiz.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.