Google map search bar resize in GWT
-
I have a gwt application that uses the map api for a mapWidget. I added the integrated search for the map with setGoogleBarEnabled(true). It works fine, but the input field is 6px height. How can I resize it? Thanks Balint
-
Answer:
The Google Search Bar should be 15px in height by default, as far as I can understand by inspecting the DOM of a Google Map with the search bar enabled. This is how the search bar looks in the DOM: <div id=":0:formId" class="gels-form-div"> <img id=":0:logoId" class="gels-logo" src="http://www.google.com/uds/modules/elements/localsearch/logo_66x22.png"> <input id=":0:inputId" class="gels-input" type="text" name="search" title="search" value="search the map" style="width: 153px; "> <input id=":0:buttonId" class="gels-button" type="submit" value="Search" title="search"> </div> Make sure that your application is not overriding the height of the gels-input class. If this does not help, you may want to override the height yourself with: input.gels-input { height: 15px; }
user302347 at Stack Overflow Visit the source
Related Q & A:
- How to create map overlays on google map?Best solution by Quora
- How do you delete search topics from the search bar?Best solution by Yahoo! Answers
- How do I clear the search bar from Yahoo search engine?Best solution by Yahoo! Answers
- How do i clear my video search from search bar?Best solution by Yahoo! Answers
- How is google earth better than google map?Best solution by news.softpedia.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.