Google maps uses to much computer power

Hi,
First I want to say that dont understand much about computers.
So my problem is everytime I open the new google maps (using the latest chrome) in couple of minutes my computer becomes really how and I start hearing the fans going. I am using iStatsPro to look at some parameters and GPU goes up to 90 degrees celcius.
I want to ask if this is normal?
I study civil engineering and my hoppy is photography so I use photoshop, autocad, sketchup and at the same time have mails, itunes, skype and evernote open for exapme and I dont really the fans when I am using this programs and in my opinion they require much more power than google maps. (gave you this info just so that you know what I usually run)
I play games from time to time like Guild Wars 2 and then I can hear the fans but this is normal
My computer is the latest MacBook Pro 15" (the more powerful one).
Sorry for my language and hope that I have given you guys enough informations.

Chrome appears to be about the worst choice for Browsers in your situation. It has know problems including memory leaks.
I suggest you switch to Firefox or Safari, and you will have much less trouble.

Similar Messages

  • How do you insert an image into a google map using a macbook?

    I am trying to put images into a Google map using my MacBook, but cannot seem to find any help. How do I insert an image into my Google map using my MacBook?

    Nothing complicated with your menu - very clear "ADD Image" but my menus are not as simple. Everytime I need to add an image I spend 5-10 minutes searching again. Wonder why so hard. I generally find Acrobat menus cryptic and unclear and I am big Adobe fan - use Illustrator, Photoshop, Dreamweaver, Premier, Fireworks etc - but Acrobat menus are like calculus in the dark.

  • How much data does google maps use

    how much data does google maos use ?

    That question has a lot of variables. If you are just looking up an address it should not using very much. If you are using  it for an 8 hour drive it will use quite a bit.

  • Google map use afcs

    I have problem.
    I whrite like http://demo.ashorten.com/gmapcocomo/ .
    Use afcs share google map in same room.
    But I have to  create new room first ,and  enter my create room.
    example: I create first room ,name is new. After enter room(new),I can look map and if other people come in, I change LatLng and  their map also
    change.Like URL.
    But when I create second room or more, map can't show.Only first room can use. I don't know why.
    I create room anyone collectionNodes  have ShareMap.
    thx.
    map code:
    <?xml version="1.0" encoding="utf-8"?>
    <SuperPanel xmlns="net.brandonmeyer.containers.*" xmlns:mx="http://www.adobe.com/2006/mxml" title="Google map"
    allowClose="true" allowDrag="true" allowMaximize="true" allowMinimize="true" close="PopUpEffect.Hide(this);" allowResize="true"
    width="550" height="400" fontSize="12" xmlns:rtc="AfcsNameSpace"
      xmlns:maps="com.google.maps.*"  >
    <mx:Script>
      <![CDATA[
      import com.google.maps.services.GeocodingEvent;
      import com.google.maps.services.ClientGeocoder;
      import mx.events.ItemClickEvent;
      import mx.managers.PopUpManager;
      import com.google.maps.styles.FillStyle;
      import com.google.maps.styles.StrokeStyle;
      import com.google.maps.InfoWindowOptions;
      import com.google.maps.MapMouseEvent;
      import com.google.maps.overlays.Marker;
      import com.google.maps.overlays.MarkerOptions;
      import com.google.maps.MapZoomEvent;
      import com.google.maps.controls.MapTypeControl;
      import com.google.maps.controls.ZoomControl;
      import com.google.maps.controls.PositionControl;
      import com.adobe.rtc.session.ConnectSession;
      import com.google.maps.MapMoveEvent;
      import com.google.maps.LatLng;
      import com.google.maps.MapEvent;
      import com.google.maps.MapType;
      import mx.controls.Alert;
      import session.session;
      protected var _sharedMapModel:SharedMapModel;
      private var marker:Marker;
      private var markerList:Array = new Array();
      private var zoomControl:ZoomControl = new ZoomControl();
      private var mapTypeControl:MapTypeControl = new MapTypeControl();
      private var positionControl:PositionControl = new PositionControl();
      private function init():void {
        auth.userName=session.session.user_name;
        cSession.roomURL="http://connectnow.acrobat.com/ncyumis/"+roomname;
      private function onMapReady(event:MapEvent):void {
        map.visible = false;
        this.map.setCenter(new LatLng(45.468799,9.188004),14, MapType.NORMAL_MAP_TYPE);
        addMapControls();
        setupSharedMap(); 
      private function addMapControls():void {
        map.addControl(zoomControl);
        map.addControl(mapTypeControl);
        map.addControl(positionControl);
      private function removeMapControls():void {
        map.removeControl(zoomControl);
        map.removeControl(mapTypeControl);
        map.removeControl(positionControl);
      private function setupMapListeners():void {
        map.addEventListener(MapMoveEvent.MOVE_END, onMapMoveEnd);
        map.addEventListener(MapZoomEvent.ZOOM_CHANGED, onMapZoom);
        map.addEventListener(MapEvent.MAPTYPE_CHANGED, onMapTypeChange);
      private function setupSharedMap():void {
        _sharedMapModel = new SharedMapModel();
        _sharedMapModel.subscribe("sharedMap");
        _sharedMapModel.addEventListener("subscribed",onSubscribed);
        _sharedMapModel.addEventListener("latLngChange",onPositionChange);
        _sharedMapModel.addEventListener("zoomChange",onZoomChange);
        _sharedMapModel.addEventListener("mapTypeChange",onMapTypeChanged);
        _sharedMapModel.addEventListener("markerChange",onMarkerChange);
      private function addMarkerToMap():void {
        marker = new Marker(map.getCenter(),new MarkerOptions({draggable:true,strokeStyle: new StrokeStyle({color: 0x000000}),fillStyle: new FillStyle({color: 0x0000FF, alpha: 0.8}),tooltip:ConnectSession.primarySession.userManager.getUserDescriptor(ConnectSession. primarySession.userManager.myUserID).displayName}));
        map.addOverlay(marker);
        marker.addEventListener(MapEvent.OVERLAY_MOVED, onOverlayMove);
        _sharedMapModel.marker = marker;
      private function onSubscribed(p_evt:Event=null):void {
        _sharedMapModel.removeEventListener("subscribed",onSubscribed);
        setupMapListeners();
        addMarkerToMap();
        map.visible = true;
      private function onMapMoveEnd(event:MapMoveEvent):void {
        _sharedMapModel.latLng = map.getCenter();
      protected function onPositionChange(p_evt:Event=null):void {
        map.removeEventListener(MapMoveEvent.MOVE_END, onMapMoveEnd);
        map.setCenter(_sharedMapModel.latLng);
        map.addEventListener(MapMoveEvent.MOVE_END, onMapMoveEnd);
      private function onMapZoom(event:MapZoomEvent):void {
        _sharedMapModel.zoomLevel = map.getZoom();
      protected function onZoomChange(p_evt:Event=null):void {
        map.removeEventListener(MapZoomEvent.ZOOM_CHANGED, onMapZoom);
        map.setZoom(_sharedMapModel.zoomLevel);
        map.addEventListener(MapZoomEvent.ZOOM_CHANGED, onMapZoom);
      private function onOverlayMove(event:MapEvent):void {
        _sharedMapModel.marker = marker;
      protected function onMarkerChange(p_evt:Event=null):void {
        markerList.push(_sharedMapModel.marker);
        for each (var currentMarker:Marker in markerList) {
        if (currentMarker.getOptions().tooltip == _sharedMapModel.marker.getOptions().tooltip) {
          map.removeOverlay(currentMarker);
        map.addOverlay(_sharedMapModel.marker);
      private function onMapTypeChange(event:MapEvent):void {
        _sharedMapModel.mapType = map.getCurrentMapType().getName();
      protected function onMapTypeChanged(p_evt:Event=null):void {
        map.removeEventListener(MapEvent.MAPTYPE_CHANGED, onMapTypeChange);
        switch (_sharedMapModel.mapType)
        case "Map":
          map.setMapType(MapType.NORMAL_MAP_TYPE);
          break;
        case "Satellite":
          map.setMapType(MapType.SATELLITE_MAP_TYPE);
          break;
        case "Hybrid":
          map.setMapType(MapType.HYBRID_MAP_TYPE);
          break;
        case "Terrain":
          map.setMapType(MapType.PHYSICAL_MAP_TYPE);
          break;
      public function searchAddress(addr:String):void
        var geocoder:ClientGeocoder = new ClientGeocoder();
          geocoder.addEventListener(GeocodingEvent.GEOCODING_SUCCESS,
        function(event:GeocodingEvent):void
                var placemarks:Array = event.response.placemarks;
                if (placemarks.length > 0)
                  map.setCenter(placemarks[0].point);
                  _sharedMapModel.latLng = map.getCenter();
        geocoder.addEventListener(GeocodingEvent.GEOCODING_FAILURE,
        function(event:GeocodingEvent):void
          Alert.show("Geocoding failed");
        geocoder.geocode(addr);
      ]]>
    </mx:Script>
    <rtc:AdobeHSAuthenticator id="auth"  />
        <rtc:RoomSettings autoPromote="true" roomBandwidth="auto" id="roomSettings"/>
        <rtc:ConnectSessionContainer visible="false" id="cSession" authenticator="{auth}" autoLogin="true" initialRoomSettings="{roomSettings}" />
    <mx:HBox width="100%" height="24" verticalAlign="middle">
      <mx:TextInput id="searchStr" enter="searchAddress(searchStr.text)" width="250"/>
      <mx:Button label="Search" click="searchAddress(searchStr.text)" />
        </mx:HBox>
    <maps:Map id="map" top="70" left="0" right="0" bottom="0" width="100%" height="100%"
      key="map Key"
      mapevent_mapready="onMapReady(event)" />
    </SuperPanel>

    Hi Cha Yi,
    Is it possible you can share the example of the googlemap collaboration using Adobe LCCS? I am stuck at creating the MapSharedModel class...
    Regards,
    Tan

  • Google Map--Using Distance Measuring Tool

    Dear Everyone,
    I have created a Google Map with Multiple Markers, I want to now implement the distance measuring tool in it.
    The Scenario is this way,
    User Enters his location,
    Now User wants to find the distance between that particular entered location and a particular Marker.
    Distance between : User entered Location - Marker(already placed).
    KINDLY REPLY ME AS SOON AS POSSIBLE, EVEN YOU HAVE A LITTLE KNOWLEDGE ABOUT THE DISTANCE MEASURING IN GOOGLE MAP.
    Regards,
    Ashish Samant

    Hi There,
    Here is how you use the AjaxMapViewer component in Creator, not sure if you can use distance viewer etc with it
    http://www.netbeans.org/kb/samples/tapping-google-maps.html?me=1
    http://developers.sun.com/jscreator/learning/tutorials/2/ajaxmapviewer.html
    Thanks
    K

  • Find direction for address using google map using web Applet.

    Hi all,
    Please help me solve this .
    i want to see the (way)direction from office to account address in google map below each each contact details.
    i created a Account Web Applet, it is showing account address correctly
    http://maps.google.com/?q=%%%Bill_To_ADDR_Address1%%%,+%%%Bill_To_CITY_City%%%,+%%%Bill_To_COUNTRY_Country%%%
    But i want to see the direction from office, ..
    Thanks in Advance.
    [email protected]
    Uthaya.

    Hello,
    This is what you have to use as an example
    http://maps.google.com/maps?f=d&source=s_d&saddr=Collins+Street,+Melbourne,+Victoria,+Australia&daddr=Elizabeth+Street,+Melbourne,+Victoria,+Australia
    h5. This is the from address
    Collins+Street,+Melbourne,+Victoria,+Australia
    h5. This is the end location
    Elizabeth+Street,+Melbourne,+Victoria,+Australia
    What you will need to do is relace these values with %%%Bill_To_Addr_Address1%%% and so on

  • How to Find the Location in Google Maps using Latitude and Longitude

    Hai,
    I need to find the Location from Google Maps, which is match with the Latitude and Longitude values we are sending.
    This will be done by using pure java class i need, can anyone having the sample code for this.
    It's Urgent, please help me
    Expecting replies...

    Yes we were having the performance issues when it is getting locked? in this what i want to know
    why it happens suddenly?
    or what package this piece of code is calling?
    or is there any possiblity of system will degrade the performance like sys user etc...?
    where exactly i found the root cause for further analysis?
    so that next time onwards if particular objects is locking we come to know why it happens is there any logical false or how do we eliminate this issue last time?
    coz in our environment sometimes most of lockings are from the same table?
    pls let me know where i have to concentrate for debug and how to troubloshoot and reslove this
    sorry for the inconvience.. i m expecting the answer from here. if anybody wants some more info i ll let him know.
    as of till now i got some docs i start to read this.
    Regards
    M.Murali..
    Note: will system/sys degrade the performance ?if so how ?

  • We are traveling to france in rural areas of brittany and want to know approx. how many megabytes does google maps use.

    HOw ow many megabytes does googles apps use?

    12.6 MBs according to iTunes Store where you can find the same information.

  • Mail uses too much CPU power

    I don't know why Mail uses something like 99% of the cpu power. It does that a few minutes after it opens. I'm running Lion on a Macbookpro3,1.
    Thanks

    i am having the same problem. it slows when (a) it's accessing inboxes, or junk or trash ..., (b) it slows when i start a message, (c) it slows intermittently when i am typing a message, (d) it slows when i am sending a message, (e) it slows when i close mail, (f) it slows just about every moment i do ANYTHING.
    i had no problem like this in tiger prior to installing Leopard (upgrade). i am using a 2.5 GHx iMac G5. i have cleaned out all the unnecessary inboxes in ~/Library that are generated by reaccessing the IMAP accounts after the leopard upgrade. i don't have large/many-filed mailboxes at ALL either on the IMAP accounts or on the computer.
    everytime it slows it the cpu is hovering between 60 and 90% on mail.app.
    conversely, i didn't encounter this problem on my 2 powerbooks. one powerbook got a fresh install and i just ported over the mailboxes. the other i did an upgrade.
    any advice would be greatly appreciated.

  • Use too much computer memory

    I locked computer after work.When I use it next day, firefox use 2.4G memory and computer is out of work. I checked firefox found that only 7 tabs opened.
    It happened for Firefox 4 on this computer running Windows Server 2008.
    I'm so sorry for my broken English. Chinese version as follows:
    我锁定了计算机,第二天发现firefox使用了2.4G内存,我只打开了7个标签,也就是7个网页。我使用的是firefox4 操作系统是Windows Server 2008

    I locked computer after work.When I use it next day, firefox use 2.4G memory and computer is out of work. I checked firefox found that only 7 tabs opened.
    It happened for Firefox 4 on this computer running Windows Server 2008.
    I'm so sorry for my broken English. Chinese version as follows:
    我锁定了计算机,第二天发现firefox使用了2.4G内存,我只打开了7个标签,也就是7个网页。我使用的是firefox4 操作系统是Windows Server 2008

  • GTK3 menus are slow, use too much CPU power [Found a workaround]

    I've noticed that the menus in GTK3 applications seem laggy - there's a slight delay before they pop up, and the menu entry highlights lag behind the cursor. At first I thought this was just built in delay (as with the gtk-menu-popup-delay setting), but htop showed CPU usage (for both my netbook's cores) spiking to 50% or more whenever I moused through a menu. GTK2 applications showed about half this CPU activity, and are much snappier.
    Is there a workaround for this? I've already tried disabling the Composite extension and enabling XLIB_SKIP_ARGB_VISUALS, and neither help. I also get menu lag even with the default (Raleigh) GTK3 theme.
    (Edit: and before anyone asks, yes, my icon caches are up to date. )
    Last edited by Gullible Jones (2012-05-17 01:46:58)

    i'm not seeing this, i ran a few demos in both gtk-demo and gtk3-demo, flipped thru a bunch of menus real fast, and the cpu usage for both was nearly indentical.  those affected should probably post more info about their setup such as what graphic driver they're using and if they're on 32 or 64 bit arch, etc.
    my relevant setup info:
    fully updated arch-x86_64
    openbox
    xf86-video-nouveau 0.0.16_git20120324-1 (compiled myself from that date in order to be able to use the new SwapLimit option for reliable double buffering with vsync)

  • Can I use Google Maps in iPhone application and charge for it?

    I'm looking to create a location-based application for the iphone that uses a map to display locations. I'd like to use a UIWebView to display Google Maps using their javascript API which shows a map hosted on my web site.
    When my app is finished, can I charge for it in the App Store, or will this be a violation of the Google Maps API Terms of Use?
    Are there any other non-free iPhone apps that embed Google Maps?
    Thanks, Scott

    My interpretation of the following:
    Google Maps API Terms of Service wrote:
    The API may be used only for services that are generally accessible to consumers without charge. Accordingly, You may not use the API for any service that requires a subscription or other restricted access, or for which a fee is charged.
    ... is that there's no way you can charge for an app that uses the API.

  • Unable to print Google maps

    Hi,
    Until a few days ago, I could print out a Google map with the print command in Safari (2.0.4.), move the map to zoom in on a particular intersection and print that page as well. It all worked fine. Computer Is Power Mac G4, HP 4000 laser printer.
    Today, I no longer can print a google map using the print command in Safari (2.0.4) or "print" in preview. Text directions print out, but no map is printed just a blank page.
    Note: I am able to print a map using the print command on the Google page, but the map consists of 3 small boxes (overview, start, and end). I can't print out a zoomed-in area.
    I emptied the cache, cleared history, and I have not reset Safari.
    Any suggestions as to why and what to do would be appreciated. Thanks
    Richard
      Mac OS X (10.4.7)   Power Mac G4

    Google wrote and said they changed their output format for printing. So, not a Safari issue.

  • Viewing modified google maps routes on iPhone

    I just discovered today that you can't see a map route you modified on the web via google maps using the Maps app on the iphone! What a bummer!
    I was hoping to use this to make bike routes for myself using google maps (you know how you can get directions on google maps on a computer, then you can drag parts of the route to different streets to modify the route), and then e-mail the route link to my iphone so I'd have the route via maps app.
    Instead, when I modify the route using google maps on a computer and send it via e-mail, the e-mail shows up in my iphone, I click the link, am taken to the Maps app, which re-calculates the route for driving. But the whole point is to view my custom route for biking! And there's no way to modify the route in Maps app (is there?).
    What's more, when I click the link to the google map in mail, it automatically takes me to the maps app. Is there any way I can make it take me to safari so I can see the map I modified? Since there's no copy/paste, seems I'd just have to memorize the lengthy url, which is ridiculous.
    Does anyone know of a good way to do this?

    I'm having the exact same issue. When I create a custom route on Google Maps (www.google.com/maps), point-to-point, and then force it to take me on back roads via the drag option it won't work, it won't even plot the course.
    Example:
    Home to point 1, point 1 to point 2, point 2 to point 3 and point 3 to home.
    It gives me an error saying, "End location not found"
    Really annoying! Fix it Apple.

  • Dynamically generated Google Map in new window

    I've got a detail page for restaurants and would like to have
    a "MAP IT"
    link that, when clicked, opens a map of the location in a new
    window,
    preferably using Google maps since I like them (but that's
    not critical).
    I've got the WebAssist extension but it will only embed the
    map and you have
    to enter the address to create it. so, my questions are:
    1. How can I generate a Google map using fields from my
    Recordset (I'd need
    at least street and zip but it's probably better to use the
    city and state
    too)?
    2. How can I have it open in a new browser window?
    An extension would be best and easiest, but I'm open to any
    possibility that
    doesn't require a degree in advanced rocket science.
    BTW, I have a Google Maps API for this site. I'm using PHP
    and MySQL.
    Thanks!
    Mad Dog

    "Mad Dog" <[email protected]> wrote in
    message
    news:f5hnhb$qrh$[email protected]..
    >I found the answer and it turned out to be simple. The
    info is here for
    >both Google maps and Yahoo maps, though a couple of
    things were confusing
    >(like what's with the "+" signs?):
    >
    http://www.gdsland.com/tutorial/googlemap.php
    >
    > Here's what I ended up using for Google and it works
    like a charm.
    >
    > <a href="
    http://maps.google.com/?q=loc:<?=$row_Recordset['street'
    > <?=$row_Recordset['city']?>,
    <?=$row_Recordset['state']?>
    > <?=$row_Recordset['zip']?>" target="new">MAP
    IT!</a>
    >
    > One thing that messed me up for a while is it turns out
    Google maps
    > doesn't like a "#" coming at it. It truncates the
    address at that point. A
    > test record I was using had that as a suite number so
    once I changed that
    > in the database all is well and good.
    I believe this is because the "#" is seen as the beginning of
    the "hash"
    value (location.hash)
    See
    http://www.tjkdesign.com/articles/locationobject.asp?who=MD&where=SF#boulange
    > Good work, Mad Dog!
    Yes indeed!
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    The perfect FAQ page:
    http://www.TJKDesign.com/go/?9
    CSS-P Templates:
    http://www.TJKDesign.com/go/?1
    CSS Tab Menu:
    http://www.TJKDesign.com/go/?3

Maybe you are looking for