{"version":3,"sources":["src/app/services/navigation-service.ts","src/app/floorplan/floorplan.component.ts","src/app/floorplan/floorplan.component.html","src/app/pipes/floors/floors.pipe.ts","src/app/pipes/append/append.pipe.ts","src/app/floorplans/floorplans.component.ts","src/app/floorplans/floorplans.component.html","src/app/homes/manufactured/energystar/energystar.component.ts","src/app/homes/manufactured/energystar/energystar.component.html","src/app/homes/manufactured/singlewide/singlewide.component.ts","src/app/homes/manufactured/singlewide/singlewide.component.html","src/app/homes/manufactured/alaska/alaska.component.ts","src/app/homes/manufactured/alaska/alaska.component.html","src/app/components/clearance/clearance.component.ts","src/app/components/clearance/clearance.component.html","src/app/components/homepage2/beautiful-display/beautiful-display.component.ts","src/app/components/homepage2/beautiful-display/beautiful-display.component.html","src/app/components/homepage2/truck-row/truck-row.component.ts","src/app/components/homepage2/truck-row/truck-row.component.html","src/app/components/homepage2/lets-build-row/lets-build-row.component.ts","src/app/components/homepage2/lets-build-row/lets-build-row.component.html","src/app/components/homepage2/hero-pic/hero-pic.component.ts","src/app/components/homepage2/hero-pic/hero-pic.component.html","src/app/components/homepage2/factorytrained/factorytrained.component.ts","src/app/components/homepage2/factorytrained/factorytrained.component.html","src/app/components/homepage2/homepage-intro/homepage-intro.component.ts","src/app/components/homepage2/homepage-intro/homepage-intro.component.html","src/app/components/homepage2/homepage2.component.ts","src/app/components/homepage2/homepage2.component.html","src/app/components/advantages/advantages.component.ts","src/app/components/advantages/advantages.component.html","src/app/components/diffs-manufactured/diffs-manufactured.component.ts","src/app/components/diffs-manufactured/diffs-manufactured.component.html","src/app/components/pagenotfound/pagenotfound.component.ts","src/app/components/pagenotfound/pagenotfound.component.html","src/app/homes/manufactured/triplewide/triplewide.component.ts","src/app/homes/manufactured/triplewide/triplewide.component.html","src/app/services/routeReuse.service.ts","src/app/floorplan/floorplan-seo.resolver.ts","src/app/homes/manufactured/tempo/tempo.component.ts","src/app/homes/manufactured/tempo/tempo.component.html","src/app/services/mock-media.ts","src/app/shared/carousel/carousel.component.ts","src/app/shared/carousel/carousel.component.html","src/app/app-routing.module.ts","src/app/services/canonical.service.ts","src/app/components/mobilenav/mobilenav.component.ts","src/app/components/mobilenav/mobilenav.component.html","src/app/components/homepage2/topnavigation2/topnavigation2.component.ts","src/app/components/homepage2/topnavigation2/topnavigation2.component.html","src/app/components/homepage2/bottomnavigation2/bottomnavigation2.component.ts","src/app/components/homepage2/bottomnavigation2/bottomnavigation2.component.html","src/app/app.component.ts","src/app/app.component.html","node_modules/@angular/animations/fesm2022/browser.mjs","node_modules/@angular/platform-browser/fesm2022/animations.mjs","src/app/floorplan/floorplan-routing.module.ts","src/app/floorplan/floorplan.module.ts","src/app/floorplans/floorplans-routing.module.ts","src/app/floorplans/floorplans.module.ts","src/app/app.module.ts","src/main.ts"],"sourcesContent":["import { Injectable } from \"@angular/core\";\r\nimport { Location } from \"@angular/common\";\r\nimport { Router, NavigationEnd } from \"@angular/router\";\r\n \r\n@Injectable({ providedIn: \"root\" })\r\nexport class NavigationService {\r\n private history: string[] = [];\r\n \r\n constructor(private router: Router, private location: Location) {\r\n this.router.events.subscribe((event) => {\r\n if (event instanceof NavigationEnd) {\r\n this.history.push(event.urlAfterRedirects);\r\n }\r\n });\r\n }\r\n \r\n back(): void {\r\n this.history.pop();\r\n if (this.history.length > 0) {\r\n this.location.back();\r\n } else {\r\n this.router.navigateByUrl(\"/floorplans\");\r\n }\r\n }\r\n}\r\n\r\n//reference article\r\n//https://nils-mehlhorn.de/posts/angular-navigate-back-previous-page/","import { FloorplanService } from './../services/floorplan.service';\r\nimport { Component, NgZone } from '@angular/core';\r\nimport { catchError, map, switchMap, tap } from 'rxjs/operators';\r\nimport { ActivatedRoute, Router, NavigationEnd } from '@angular/router';\r\nimport { EMPTY } from 'rxjs';\r\nimport { NavigationService } from '../services/navigation-service';\r\nimport { Meta, Title } from '@angular/platform-browser';\r\nimport { Floorplan } from '../models/floorplan';\r\nimport { ViewportScroller, Location } from '@angular/common'; // Import ViewportScroller\r\n\r\n@Component({\r\n selector: 'app-floorplan',\r\n templateUrl: './floorplan.component.html',\r\n styleUrls: ['./floorplan.component.scss'],\r\n})\r\nexport class FloorplanComponent {\r\n //following reactive approach\r\n //https://stackoverflow.com/questions/74104530/how-can-i-get-an-object-by-id-using-observables-declarative-pattern\r\n //preferred pattern does not need an subscribe / unsubscribe when I use async pipe in html\r\n\r\n fp: Floorplan;\r\n private scrollPosition: [number, number]; // To store scroll position\r\n private id$; // Declare id$ without initialization\r\n public floorplan$; // Declare floorplan$ without initialization\r\n\r\n constructor(\r\n private route: ActivatedRoute,\r\n private floorplanService: FloorplanService,\r\n private navigation: NavigationService,\r\n private Title: Title,\r\n private Meta: Meta,\r\n private viewportScroller: ViewportScroller, // Inject ViewportScroller\r\n private location: Location,\r\n private router: Router,\r\n private zone: NgZone\r\n ) {\r\n this.id$ = this.route.paramMap.pipe(\r\n //gets the floorplanId from paramaters and returns observable\r\n map((params) => params.get('floorplanId'))\r\n );\r\n\r\n this.floorplan$ = this.id$.pipe(\r\n //emits floorplan as observable\r\n switchMap((id) => this.fetchFloorplan(id))\r\n );\r\n }\r\n\r\n private fetchFloorplan(id) {\r\n return this.floorplanService.getFloorplan(id).pipe(\r\n //tap((data) => console.log(JSON.stringify(data))),\r\n catchError((err) => {\r\n console.log(`Unable to get data for floorplan ${id}.`);\r\n return EMPTY;\r\n })\r\n );\r\n }\r\n\r\n onClose(): void {\r\n this.location.back(); //see app.config.ts which explains how we maintain scroll position prior to showing floorplan detail\r\n }\r\n\r\n ngOnInit() {\r\n // this.Title.setTitle(\r\n // 'Floorplan layout with details for Majestic, Schult, Summit Series, Columbia River or Tempo series of manufactured homes'\r\n // );\r\n // this.Meta.updateTag({\r\n // name: 'description',\r\n // content: 'showing floorplan and details',\r\n // });\r\n } // ngOnInit\r\n}\r\n"," {{ floorplan.floorplanCaption }} {{ floorplan.floorplanDescription }}\r\n
\r\n \r\n
\r\n If you select this zero-markup option when ordering your new home, you not\r\n only maximize energy savings but you also get a nice check. In 2024, this\r\n rebate is $2,200 payable directly to the homeowner after delivery. Your\r\n Heritage sales consultant will take care of all the paperwork.\r\n
\r\n\r\n\r\n Lower Utility Bills and more comfort since your home will stay warmer in the\r\n winter and cooler in the summer. Marlette homes meet or exceed the Energy Star\r\n standard.\r\n
\r\n\r\n\r\n At Heritage Home Center, we are proud to offer Energy Star options for all our\r\n new manufactured homes, including singlewide, doublewide, and triplewide\r\n models. Our selection includes popular models such as the Tempo, Summit\r\n Series, and Canyon View series, which are manufactured by Marlette Homes and\r\n were introduced in 2023 for 2024 deliveries. When you order your home from us,\r\n you have the option to add Energy Star certification at factory cost (we can\r\n provide you with the invoice).\r\n
\r\n\r\n\r\n Single wide homes come in 1 section, built in a factory and shipped to your\r\n home site. Marlette also builds value priced single wides under the\r\n Tempo brand - providing value in a small package that fits into mobile\r\n home park spaces or a accessory dwellings, cottages etc on your property.\r\n
\r\n\r\n\r\n Because single wides come in just one section, the cost to transport and\r\n construct on site is much lower than either with triple wide or double wides.\r\n Because both transport and finishing costs are reduced, these are very cost\r\n effective and a fraction of constructing something like this on your site.\r\n Leverage the scale of factory-built housing. Whether your new singlewide\r\n becomes your cottage, accessory dwelling, rental property, weekend getaway by\r\n the lake, or your primary residence these are great options. park.\r\n
\r\n\r\n\r\n Yes we have lenders who specialize in manufactured and can provide competitive\r\n financing as conventional mortgages and at competitive rates. Please call or\r\n write us for more info.\r\n
\r\n\r\n\r\n We can build a\r\n 3 bedroom, 2 bathroom single wide that is nearly 1,100 square feet with\r\n the master bedroom split on one side and 2 bedrooms on the other side. The\r\n main living area including kitchen, dining and utility rooms are in the middle\r\n of the home. This provides common living areas yet still offers privacy for\r\n the bedrooms.\r\n
\r\n\r\n\r\n The base floor plans you see below can be customized from basic to luxury with\r\n vaulted loft-style ceilings, large windows, cabinets, solid surface\r\n countertops, walk-in pantrys, extra tall windows, glass tile finishes, roomy\r\n bathrooms with walk-in showers, jacuzzi tubs, upgraded window treatments,\r\n floor coverings etc. The Tempo series comes standard with full drywall\r\n throughout the home, hardwood cabinets, Frigidaire stainless steel appliances\r\n and craftsman style front doors.\r\n
\r\n\r\n\r\n No on-site assembly is required because the entire home is built in a single\r\n section and delivered to your prepared site, nearly move-in ready (except for\r\n carpet and paint)\r\n
\r\n\r\n\r\n New home construction in Alaska is expensive and time consuming. With a\r\n shorter building season, imported materials and a smaller labor pool, the per\r\n square foot cost of building in Alaska is at least 50% higher in Alaska. Get a\r\n quality Marlette Manufactured Home ordered, built and shipped within weeks.\r\n
\r\n
\r\n Manufactured homes built in Washington State and then shipped by barge\r\n directly to you avoids all of the downsides of site building in Alaska.\r\n Climate is not a factor and building materials are sourced by a factory by the\r\n train load. Homes are built to standards acceptable to the State of Alaska\r\n with the right snow load and wind zone you need.\r\n
\r\n\r\n\r\n Looking for a manufactured home that can withstand the harsh Alaskan winters?\r\n Look no further. Our manufactured homes are specially built to withstand\r\n shipping and the extreme weather conditions of Alaska. With an extra roof load\r\n of up to 120lbs per square foot (compared to the typical 20lbs roof load for\r\n other states), you can rest assured that your home will be sturdy and safe.\r\n
We understand the unique requirements for building in Alaska and\r\n can take care of all the necessary details, including ensuring that your home\r\n is constructed to meet the right wind zone requirements. Our Energy Star\r\n certified homes are also designed to be energy-efficient, helping you save on\r\n heating costs.
And for those cold winter nights, we now offer\r\n factory-installed wood stoves to keep your home warm and cozy. So why wait?\r\n Contact us today to learn more about our selection of manufactured homes built\r\n for Alaska.\r\n
\r\n Heritage Home Center are experts building Energy Star homes that are specially\r\n suited for Alaska weather. Stay warm in the winter and cool in the summer. See\r\n more information on our Energy Star homes.\r\n Energy efficient manufactured homes\r\n
\r\n\r\n\r\n The cost of contruction for Alaska standards is very reasonable for factory\r\n built manufactured. In total the extra cost is under $10,000 for a singlewide,\r\n excluding sea freight. Our pricing includes everything else including shipping\r\n FOB to the Port of Seattle.\r\n
\r\n\r\n\r\n Of course! We will arrange to have the home inspected once built and prepared\r\n for a sea freight direct to your Alaska building site. The home is delivered\r\n to the pier and everything is included in the price. Call today for a price\r\n quote. We are open 7 days a week.\r\n
\r\n\r\n\r\n The State provides streamlined application process and you can download\r\n form\r\n
\r\n\r\n\r\n Let’s build your DREAM home. Advantages of quality factory-built homes.\r\n
\r\n Learn more about Manufactured Homes\r\nCurious to compare manufactured homes with conventional housing?
\r\n Comparison of Manufactured vs. conventional homes\r\n{{ errorMessage }}
\r\n\r\n Triple wide homes come in 3 separate sections, built in a factory and shipped\r\n to your homesite. Marlette builds triple wides under the Majestic Brand -\r\n their top of the line series that includes many luxurious features as standard\r\n in the base model.\r\n
\r\n\r\n\r\n Because triple wides come in 3 sections, the cost to transport and construct\r\n on site is slightly higher than with a double wide which has 2 sections. Even\r\n so, the extra size and layout options you get from 3 sections, make sense as\r\n these are still cost effective and\r\n 1/3 of the cost to construct the same square footage on site! In 2022\r\n the base cost excluding freight is as low as $230K finshed and move-in ready!\r\n Delivery cost is quoted separately depending on your address. We can give you\r\n a pretty accurate estimate over the phone.\r\n
\r\n\r\n\r\n Every floor plan order is custom built using a base floorplan and then you can\r\n configure the number of bedrooms and bathrooms ranging from 3 to 5 bedrooms\r\n and 2 to 3 bathrooms in any configuration and finish. We can custom build a\r\n triple wide from about 1,800 square feet to over 3,000 square feet. These open\r\n floor plans provide large living in a single floor.\r\n
\r\n\r\n\r\n All of our homes are built with quality. For example, outside walls are 2x6\",\r\n inside walls are 2x4\" and floor are 2x10\" of grade-A lumber.\r\n
\r\n\r\n\r\n The base floor plans you see below can be customized from basic to luxury with\r\n vaulted loft-style ceilings, large windows, cabinets, solid surface\r\n countertops, walk-in pantry, extra tall windows, glass tile finishes, roomy\r\n bathrooms with walk in showers, jacuzzi tubs, upgraded window treatments,\r\n floor coverings etc.\r\n
\r\n\r\n\r\n The 3-sections are joined starting with section A then B and C. In many cases,\r\n we the roof trusses come pre-shipped inside the home and then get assembled on\r\n site to create the tall roof lines that make our homes beautiful inside and\r\n out.\r\n
\r\n\r\n\r\n Tempo brand - introduced in 2023 as a new value series of homes our\r\n most requested options in a single base price. All Tempo homes come\r\n standard with Hardwood cabinets, Frigidaire stainless steel appliances,\r\n Craftsman style front door, Smart Thermostat plus others such as flat 9'\r\n ceilings and drywall throughout.\r\n
\r\n\r\n\r\n We can sell you a 1 bedroom, 1 bathroom 533 square foot Tempo singlewide for\r\n $55,000\r\n plus delivery to your site. Just call us and we can get you a firm\r\n quote to anywhere in Washington State.\r\n
\r\n\r\n\r\n Yes we have lenders who specialize in manufactured and can provide competitive\r\n financing as conventional mortgages and at competitive rates. Please call or\r\n write us for more info.\r\n
\r\n\r\n\r\n We can build you a 3 bedroom, 3 bathrom singlewide that is over 1,000 square\r\n feet. This can fit on may lots or park sites providing spacious living in a\r\n compact singlewide package for below $100,000 + delivery.\r\n
\r\n\r\n\r\n The base floor plans you see below come with standard and popular options. We\r\n can however work with you to customize some things such as colors and\r\n appliances along with a couple of other items. Your sales consultant can\r\n provide all the details, so please call for more information 425-353-5464.\r\n
\r\n\r\n