67 lines
3.9 KiB
Plaintext
67 lines
3.9 KiB
Plaintext
<script type="text/javascript" src="~/Scripts/Inventory/ShowDealerMap.js"></script>
|
|
@*<link href="~/Content/css/page-layout.css" rel="stylesheet" />*@
|
|
<style type="text/css">
|
|
html, body, #map-canvas { height: 100%; margin: 0px; padding: 0px; }
|
|
.controls { margin-top: 16px; border: 1px solid transparent; border-radius: 2px 0 0 2px; box-sizing: border-box; -moz-box-sizing: border-box; height: 32px; outline: none; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
|
|
|
|
#searchLocationTool { background-color: #fff; font-family: Roboto; font-size: 13px; font-weight: 300; margin-left: 13px; padding: 0 11px 0 13px; text-overflow: ellipsis; width: 400px; left:50%!important; top: 5px !important;margin: 8px;}
|
|
|
|
|
|
|
|
.pac-container { display: block; z-index: 99999999 !Important; }
|
|
|
|
|
|
#type-selector { color: #fff; background-color: #4d90fe; padding: 5px 11px 0px 11px; }
|
|
|
|
#type-selector label { font-family: Roboto; font-size: 13px; font-weight: 300; }
|
|
|
|
input[type="radio"] { height: auto; width: auto !important; vertical-align: top; margin-top: -0.5px; }
|
|
|
|
.sugList-holder{position: relative; z-index: 1; margin: auto; width: 425px;}
|
|
.sugList { width: 99%; background: #fff; position: absolute; left: 14px; top: 24px; padding: 0px;}
|
|
.sugList li { padding: 6px 10px; border-top: 1px #e6e1e1 solid; font-size: 12px;}
|
|
.sugList li i{ position:relative; width:15px; height:27px; background: transparent url('../../content/css/images/tracking.png'); background-repeat: no-repeat; background-position: -1px 1px; opacity: 0.5; float: left; margin-right: 7px;}
|
|
.sugList li:hover, .sugList li.key-highlight { background:#efecec;}
|
|
|
|
.sugList li:hover i , .sugList li.key-highlight i{opacity:1; background-color:transparent;}
|
|
/*#searchLocationTool { background-color: #fff; font-family: 'Hermes_FB'; font-size: 13px; font-weight: 300; margin-left: -200px; padding: 0 11px 0 13px; text-overflow: ellipsis; width: 100%; max-width: 400px; position: absolute !important; left: 50% !important; top: 5px !important; }*/
|
|
#searchLocationTool:focus { border-color: #4d90fe; }
|
|
|
|
</style>
|
|
|
|
<div style="padding:5px 5px;">
|
|
<input type="radio" value="11" name="radioLocation" id="radio_latLng" onchange="onRadioButtonCheckChange(id);" />
|
|
<span class="darktxt">
|
|
<label for="radio_latLng">Search by LatLng</label></span>
|
|
<input type="radio" value="11" name="radioLocation" id="radio_Address" onchange="onRadioButtonCheckChange(id);" />
|
|
<span class="darktxt">
|
|
<label for="radio_Address">Search by Location</label></span>
|
|
</div>
|
|
<div style="clear:both; float:none"></div>
|
|
<div id="div_searchByLatLng" style="display: none; margin:10px auto; text-align: center;">
|
|
Lattitude :
|
|
<input id="textLat" class="" type="text" placeholder="Lattitude" />
|
|
Longitude :
|
|
<input id="textLng" class="" type="text" placeholder="Longitude" />
|
|
<input type="button" class="button_blue" onclick="getLocationByLatLng()" value="Submit" style="margin: 0; padding: 0;" />
|
|
</div>
|
|
@*<input id="searchLocationTool" class="controls" type="text" placeholder="Search Box" style="display: none;" />
|
|
<div id="divMapContainer" style="width: 100%; height: 350px">
|
|
</div>*@
|
|
|
|
|
|
<div class="sugList-holder" id="sugList-holder">
|
|
<input id="searchLocationTool" class="controls" type="text" placeholder="Search Box" style="display: none;" >
|
|
<ul id="sugList" class="sugList"></ul>
|
|
</div>
|
|
<div id="divMapContainer" style="width: 100%; height: 350px">
|
|
|
|
</div>
|
|
@*<input id="searchLocationTool" class="controls" type="text" placeholder="Search Box">*@
|
|
|
|
<div class="footBtn_wrapper">
|
|
<input type="button" class="button_blue" onclick="getDelearLatLong()" value="Save" style="margin: 0; padding: 0;" />
|
|
<input type="button" class="button_blue CancelBtnBg" onclick="closeWindow('#divShowDealerLocation')" value="Cancel" style="margin: 0; padding: 0;" />
|
|
</div>
|
|
|