Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 10 days ago.
Improve this question
My google site is https://sites.google.com/view/drsustatistics/ and it is mapped to a custom domain www.drsustatistics.com
www.drsustatistics.com has been indexed by google according to Google Search Console. However, when I did site:www.drsustatistics.com, it seems that google could not read the contents of my site/pages and can only read the navigation buttons. Here is a screen shot. enter image description here
I also did URL live test on Google Search Console, and the results also suggested that google could not read the contents of my site. Here are some screen shots. enter image description here enter image description here
Do you have any suggestions that I can apply? Thanks.
I do not know what to try. The site was built using HTML code I used for my old classic google site: https://sites.google.com/site/drsustat/ , which was running very well. I have to switch to new google sites as now the classic google sites cannot be updated. Any help is appreciated!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is it possible to embed a GoogleEarth view inside a Java Swing app? If so, could you please point me to a tutorial explaining how to do it?
There's also NASA's World Wind SDK.
Embedding GoogleEarth inside Java Swing App is not feasible. Legally or otherwise. However you may find a way to embed Google Map on a frame.
Edit: Found this google post.
Even though technically it is possible (using JXMapViewer), legaly it is not. Google does not allow using Google Maps outside of the browser.
One possible solution would be to embed JWebPane (http://weblogs.java.net/blog/alex2d/archive/JWebPaneJ1.pdf) into your Swing App, but it is still not ready :(
I did a project on vehicle tracking system using GPS and GSM at my college.
In the project we used to get the latitude and longitude value of vehicle and show it in Google map.
The code we used for creating a frame with Google location is Map code.java
The frame is created by creating an Object of the class and calling the method
createmap(String x,String y);
Where, x-latitude and y-longitude.
I just discovered a link on java.net ...
Building Maps into Your Swing Application with the JXMapViewer
Here's a lil' tutorial which explains it all:
http://www.brantb.com/2007/12/java-and-google-earth-com-api.html
It uses the Google Earth COM API
You can use Jawin to extract native stubs and use it to embed Google Earth on a Java Swing container. I've worked on it before, please check my demo video on youtube
http://www.youtube.com/watch?v=2Pf8V8uubVM
As WTP'-- pointed out to the Blog, http://www.brantb.com/2007/12/java-and-google-earth-com-api.html Brant used "com4J" to generate the stubs.
you could us a java RDP client and run Google Earth on a remote desktop
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm looking for a way to program with HTML and CSS and have it render in the form of a Windows application.
What is the best way to do this, so I don't have to get my hands too dirty using C++?
EDIT: I see seamonkey is very confused about what im asking, so ill explain. I want to program in HTML/CSS and use that program as an offline application instead of a webpage. Ive heard useful tips like including IE9's html renderer in my program and also using HTA files or even using Chrome apps. Im still open to other suggestions.
If you are using Visual Studio, you (in essesnce) embed the Internet Explorer viewer into your application. I have done it before and it is pretty easy. To do that, just create an MFC application then use the MFC WebBrowser Control
Here is an article on how to do that.
https://msdn.microsoft.com/en-us/library/aa752046(v=vs.85).aspx
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Can someone please tell me why the Google Maps API does not work on my project?
My new website is: http://www.auto-escola.net
The API works perfectly fine on another project: http://emtaubate.com
I'm using the same code to draw the new map. I do not understand why it does not work.
Please help me.
Thank you.
It's a CSS-issue, the source is the setting overflow:hidden for div in http://www.auto-escola.net/css/estilo.css (Line 9)
Add this CSS:
#mapa div{overflow:initial;}
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
I have a problem with my site Guesstheflag.com. The site is based on a game in which people need to guess which flags belong to which countries. The site uses Google Maps to show the countries on a map.
I bought the site two years ago from someone who developed the game. Unfortunately I am not a developer and I have little knowledge of building websites. All went well the past two years and I never had problems, but since a few days if you go to the site you get a white screen in the game screen (in all browsers). I can't reach the developer of the game and I tried to find a solution myself but I don't know what I'm doing exactly so that's quite hard. ;)
Has there been a recent change in the Google Maps API (I couldn't find that) and is there a simple solution? If not, is there someone here who could help me fix the problem for a small fee?
Thanks in advance!
Yes, the Google Maps JavaScript API just advanced a minor version increment to 3.9changelog and the default version advanced from 3.6 to 3.7. A few others have run into problems. Info about which version you should use is available in the Versioning section of the Developer's Guide.
The Google Maps JavaScript API v3 docs to start with are:
The FAQ
The Developer's Guide
The API Reference Doc
The Example Code Samples